:root {
  --blue-950: #041c2d;
  --blue-900: #062a44;
  --blue-800: #00467f;
  --cyan: #18a7d8;
  --cyan-soft: #a9e6f7;
  --steel: #9baabd;
  --ink: #1f2933;
  --muted: #5e6b78;
  --line: #d9e3ee;
  --soft: #e8eef4;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(4, 28, 45, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  padding: 10px 14px 10px 12px;
  color: var(--white);
  background: rgba(6, 42, 68, 0.7);
  border: 1px solid rgba(24, 167, 216, 0.2);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
  overflow: visible;
}

.site-header.scrolled {
  min-height: 62px;
  background: rgba(4, 28, 45, 0.94);
  box-shadow: 0 18px 45px rgba(4, 28, 45, 0.28);
}

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

.brand-logo {
  display: block;
  width: 142px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.brand-symbol {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.site-header .brand > .brand-symbol {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  margin: -12px 0 -12px -2px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(4, 28, 45, 0.3);
  filter: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-800), var(--blue-900));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.05);
}

.brand-mark.large {
  width: 64px;
  height: 64px;
  font-size: 18px;
  background: var(--white);
  color: var(--blue-900);
  box-shadow: none;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 19px;
  letter-spacing: 0;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.site-nav a {
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(24, 167, 216, 0.13);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta,
.button.primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--cyan-soft), #ffffff);
  box-shadow: 0 12px 28px rgba(24, 167, 216, 0.22);
}

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

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(24, 167, 216, 0.32);
}

.button.secondary {
  color: var(--white);
  background: var(--blue-800);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 136px 24px 54px;
  color: var(--white);
  background: var(--blue-950);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.64;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(24, 167, 216, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(4, 28, 45, 0.98) 0%, rgba(4, 28, 45, 0.88) 45%, rgba(4, 28, 45, 0.58) 78%, rgba(4, 28, 45, 0.78) 100%),
    linear-gradient(0deg, rgba(4, 28, 45, 0.62), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 64px;
  width: min(100%, var(--max));
  min-height: calc(100svh - 190px);
  margin: 0 auto;
}

.clean-hero-grid {
  grid-template-columns: minmax(0, 0.95fr);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan) 0%, var(--cyan-soft) 42%, var(--steel) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(46px, 7vw, 86px);
}

h2 {
  font-size: clamp(32px, 4.2vw, 58px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.hero-main-logo {
  display: block;
  width: clamp(130px, 13vw, 160px);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.28));
}

.hero-lead {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

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

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.8vw, 64px);
}

.home-hero .hero-lead {
  max-width: 650px;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.55;
}

.home-hero .hero-actions {
  margin-top: 26px;
}

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

.page-hero {
  padding: 150px 24px 86px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 28, 45, 0.98), rgba(7, 59, 99, 0.92)),
    url("assets/pm-hero-strategy.png") center / cover;
}

.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.8vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.trust-row span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
}

.trust-row strong {
  color: var(--white);
  font-size: 19px;
}

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

.identity-card {
  display: grid;
  gap: 24px;
  width: min(100%, 430px);
  margin-left: auto;
  padding: 28px;
  color: var(--white);
  background: rgba(4, 28, 45, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.identity-card > p {
  color: var(--cyan-soft);
  font-weight: 850;
}

.identity-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  flex: 0 0 auto;
}

.identity-lockup div {
  display: grid;
  gap: 5px;
}

.identity-lockup strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 23px;
}

.identity-lockup small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.identity-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.identity-card li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-weight: 750;
}

.logos-band {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  overflow: hidden;
  color: var(--blue-900);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.logos-band span {
  flex: 0 0 auto;
  padding: 8px 14px;
  color: var(--blue-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 110px 24px;
}

.section-heading {
  width: min(100%, 840px);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  width: min(100%, var(--max));
  text-align: left;
}

.section-heading p:not(.eyebrow),
.proof-copy p,
.evaluation-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.problem-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.problem-card,
.case-card,
.method-step {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card:hover,
.case-card:hover,
.method-step:hover {
  border-color: rgba(24, 167, 216, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.problem-card span,
.method-step span,
.case-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.problem-card h3,
.case-card h3,
.method-step h3 {
  margin-bottom: 14px;
  color: var(--blue-900);
}

.problem-card p,
.case-card p,
.method-step p {
  color: var(--muted);
}

.problem-card strong {
  display: block;
  margin-top: 20px;
  color: var(--ink);
}

.split-section,
.proof-section {
  background: var(--soft);
}

.tabs-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.tab-list {
  display: grid;
  gap: 8px;
  align-self: start;
}

.tab {
  min-height: 56px;
  padding: 0 18px;
  color: var(--blue-900);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
}

.tab.active {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.tab-panels {
  min-height: 390px;
  padding: 34px;
  background: var(--blue-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab-panel {
  display: none;
  color: var(--white);
}

.tab-panel.active {
  display: block;
  animation: fadeUp 220ms ease both;
}

.panel-kicker {
  color: var(--cyan-soft);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 13px;
}

.tab-panel h3 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 48px);
}

.tab-panel ul {
  display: grid;
  gap: 12px;
  max-width: 540px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
}

.tab-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--cyan-soft);
  border-radius: 999px;
}

.method-section {
  color: var(--white);
  background: var(--blue-950);
}

.method-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.method-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.method-step h3 {
  color: var(--white);
}

.method-step p {
  color: rgba(255, 255, 255, 0.68);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.proof-copy,
.evaluation-copy {
  max-width: 520px;
}

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

.evaluation-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 48px;
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.evaluation-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-progress {
  height: 7px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 999px;
}

.form-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--cyan);
  border-radius: inherit;
  transition: width 180ms ease;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(24, 167, 216, 0.14);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 28px;
  align-items: center;
  padding: 70px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
}

.newsletter-section > * {
  width: min(100%, calc(var(--max) / 2));
}

.newsletter-section > div {
  justify-self: end;
}

.newsletter-section h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  border-color: rgba(255, 255, 255, 0.3);
}

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

.identity-assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.identity-assets article {
  min-height: 250px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.identity-logo {
  display: block;
  width: 136px;
  height: 136px;
  object-fit: contain;
}

.identity-assets article:nth-child(2) {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.identity-assets article:nth-child(2) > strong {
  display: block;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.identity-assets article:nth-child(2) > small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.identity-assets h3 {
  margin-top: 28px;
  color: var(--blue-900);
}

.identity-assets article:nth-child(2) h3 {
  color: var(--white);
}

.identity-assets p {
  margin-top: 12px;
  color: var(--muted);
}

.identity-assets article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.asset-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 7px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  padding: 22px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.faq-item span {
  color: var(--blue-900);
  font-weight: 900;
}

.faq-item strong {
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.faq-item p {
  display: none;
  grid-column: 1 / -1;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 52px 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue-950);
}

.site-footer > * {
  width: min(100%, calc(var(--max) / 2));
}

.site-footer > div:first-child {
  margin-left: auto;
}

.site-footer > div:last-child {
  margin-right: auto;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-side {
  display: grid;
  justify-items: end;
  gap: 20px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.footer-social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  text-align: left;
  justify-items: start;
}

.footer-contact a {
  display: grid;
  gap: 3px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact strong {
  color: var(--cyan-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact span {
  overflow-wrap: anywhere;
}

.copyright {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(4, 28, 45, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(4, 28, 45, 0.34);
}

.floating-whatsapp img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.legal-content {
  width: min(100%, 900px);
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--blue-900);
  font-size: clamp(30px, 3vw, 42px);
}

.legal-content p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
    padding-left: 10px;
  }

  .site-header .brand > .brand-symbol {
    width: 66px;
    height: 66px;
    margin: -8px 0 -8px -1px;
    padding: 0;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: 100%;
    padding: 12px;
    background: var(--blue-950);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  }

  .site-header.menu-open .site-nav a {
    padding: 14px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-grid,
  .clean-hero-grid,
  .tabs-layout,
  .proof-section,
  .evaluation-section,
  .newsletter-section,
  .identity-assets {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .positioning-section .section-heading,
  .positioning-section .feature-grid.three {
    grid-template-columns: 1fr;
  }

  .positioning-section .section-heading {
    margin-bottom: 42px;
  }

  .positioning-section .feature-grid.three {
    gap: 18px;
    padding-top: 18px;
  }

  .positioning-card {
    min-height: auto;
    padding: 28px 18px;
  }

  .positioning-card::before {
    inset: 10px 0;
    opacity: 0.72;
    transform: none;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .positioning-card:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 170, 189, 0.34), transparent);
  }

  .identity-card {
    margin-left: 0;
  }

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

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .newsletter-section > *,
  .newsletter-section > div,
  .site-footer > * {
    width: min(100%, var(--max));
    justify-self: start;
  }

  .footer-side {
    justify-items: start;
  }

  .footer-social,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
  }

  .site-header .brand > .brand-symbol {
    width: 56px;
    height: 56px;
    margin: -5px 0 -5px 0;
    padding: 0;
    box-shadow: 0 10px 22px rgba(4, 28, 45, 0.26);
  }

  .site-header .brand {
    gap: 10px;
  }

  .site-header .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 104px 16px 48px;
  }

  .hero-video {
    display: none;
  }

  .hero-photo {
    opacity: 0.66;
  }

  .page-hero {
    padding: 120px 16px 62px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-main-logo {
    width: min(72vw, 250px);
  }

  .positioning-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
  }

  .positioning-section .section-heading {
    margin-bottom: 34px;
  }

  .positioning-section .section-heading h2 {
    font-size: clamp(30px, 8.4vw, 42px);
    line-height: 1.1;
  }

  .positioning-copy {
    margin-top: 20px;
  }

  .hero-actions,
  .newsletter-form {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .identity-card {
    padding: 20px;
  }

  .logos-band {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section {
    padding: 72px 16px;
  }

  .problem-grid,
  .method-steps,
  .case-grid,
  .identity-assets {
    grid-template-columns: 1fr;
  }

  .tab-panels {
    min-height: auto;
    padding: 24px;
  }

  .tab-panel h3 {
    font-size: 29px;
  }

  .evaluation-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .newsletter-section {
    padding: 56px 16px;
  }

  .site-footer {
    display: grid;
    padding: 42px 16px;
  }

  .site-footer > div:first-child,
  .site-footer > div:last-child {
    margin: 0;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp img {
    width: 52px;
    height: 52px;
  }
}

/* Index 2026 summary layout */
.hero-support {
  max-width: 600px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

.microcopy {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 750;
}

.home-hero .hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.home-hero {
  padding-top: 112px;
}

.positioning-section .eyebrow {
  display: inline-block;
  color: transparent;
  margin-bottom: 24px;
  background: linear-gradient(100deg, #18a7d8 0%, #a9e6f7 44%, #9baabd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(18px, 1.7vw, 28px);
  letter-spacing: 0.08em;
  filter: drop-shadow(0 8px 20px rgba(24, 167, 216, 0.14));
}

.button.ghost.dark {
  color: var(--blue-900);
  background: rgba(6, 42, 68, 0.06);
  border-color: rgba(6, 42, 68, 0.18);
}

.section-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 34px auto 0;
}

.feature-grid {
  display: grid;
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(24, 167, 216, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--blue-900);
}

.feature-card p {
  color: var(--muted);
}

.audience-section,
.contact-brief {
  background: var(--white);
}

.audience-section .section-heading {
  margin-bottom: 34px;
}

.audience-section .feature-grid.five {
  gap: 0;
  padding: 10px;
  background: #f7f9fb;
  border: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(4, 28, 45, 0.06);
}

.audience-section .feature-card {
  min-height: 250px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: 0;
  box-shadow: none;
}

.audience-section .feature-card:last-child {
  border-right: 0;
}

.audience-section .feature-card:hover {
  background: var(--white);
  border-color: rgba(155, 170, 189, 0.22);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(4, 28, 45, 0.08);
}

.solutions-summary .section-heading.compact {
  margin-bottom: 56px;
}

.solutions-summary .eyebrow,
.audience-section .eyebrow {
  font-size: clamp(18px, 1.7vw, 28px);
}

.positioning-section {
  color: var(--white);
  padding-top: 76px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 50% 12%, rgba(24, 167, 216, 0.12), transparent 24%),
    radial-gradient(circle at 88% 74%, rgba(7, 59, 99, 0.28), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
}

.positioning-section .section-heading {
  display: grid;
  justify-items: center;
  width: min(100%, 900px);
  margin: 0 auto 34px;
  text-align: center;
}

.positioning-copy {
  margin-top: 2px;
}

.positioning-copy p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(21px, 2.2vw, 32px);
  line-height: 1.35;
  font-weight: 760;
  text-wrap: balance;
}

.positioning-section .feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding-top: 18px;
  border-top: 0;
}

.positioning-card {
  position: relative;
  min-height: 280px;
  padding: 30px 34px 12px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  isolation: isolate;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.positioning-card::before {
  content: "";
  position: absolute;
  inset: 8px 18px;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(24, 167, 216, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(24, 167, 216, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 28, 45, 0.18);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
  transform: translateY(5px);
}

.positioning-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(155, 170, 189, 0.34), transparent);
  transition: background 220ms ease, opacity 220ms ease;
}

.positioning-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-5px);
}

.positioning-card:hover::before {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(24, 167, 216, 0.38);
  box-shadow: 0 20px 50px rgba(24, 167, 216, 0.12);
}

.positioning-card:hover::after {
  background: linear-gradient(180deg, transparent, rgba(24, 167, 216, 0.5), transparent);
}

.positioning-card > * {
  position: relative;
  z-index: 1;
}

.positioning-card svg {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  color: var(--cyan);
  overflow: visible;
  transition: color 220ms ease, filter 220ms ease, transform 220ms ease;
}

.positioning-card svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.positioning-card span {
  margin-bottom: 14px;
  color: var(--cyan-soft);
  letter-spacing: 0;
  transition: color 220ms ease;
}

.positioning-card h3 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 36px);
  transition: color 220ms ease;
}

.positioning-card p {
  max-width: 320px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
  transition: color 220ms ease;
}

.positioning-card:hover svg {
  color: var(--cyan-soft);
  filter: drop-shadow(0 0 16px rgba(24, 167, 216, 0.28));
  transform: translateY(-2px);
}

.positioning-card:hover span {
  color: var(--cyan);
}

.positioning-card:hover h3 {
  color: var(--cyan-soft);
}

.positioning-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.solutions-summary,
.experience-section {
  background: var(--soft);
}

.solutions-summary {
  background: var(--white);
}

.solutions-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 34px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: 34px;
}

.solution-showcase-card {
  --stagger: 0px;
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 500px;
  padding: clamp(24px, 2.4vw, 34px);
  overflow: hidden;
  background: #f5f7f9;
  border: 1px solid rgba(155, 170, 189, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(4, 28, 45, 0.07);
  transform: translateY(var(--stagger));
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.solution-showcase-card:nth-child(even) {
  --stagger: 44px;
}

.solution-showcase-card.large {
  min-height: 560px;
}

.solution-showcase-card:hover {
  border-color: rgba(155, 170, 189, 0.18);
  box-shadow: 0 18px 48px rgba(4, 28, 45, 0.07);
}

.solution-showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.solution-showcase-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 18px;
  padding: 0 12px;
  color: var(--blue-800);
  background: var(--white);
  border: 1px solid rgba(155, 170, 189, 0.32);
  border-radius: 999px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.solution-showcase-copy h3 {
  max-width: 520px;
  color: #0d1720;
  font-size: clamp(26px, 2.25vw, 38px);
  line-height: 1.1;
}

.solution-showcase-copy p {
  max-width: 560px;
  margin-top: 18px;
  color: #5d6670;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.58;
}

.solution-showcase-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 19px;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 999px;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(0, 70, 127, 0.18);
}

.solution-showcase-copy a::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.solution-media {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: 295px;
  margin: 34px -34px -34px;
  padding: 0;
  overflow: hidden;
  background: #f5f7f9;
  border-radius: 0 0 18px 18px;
  pointer-events: auto;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.solution-showcase-card.large .solution-media {
  min-height: 320px;
}

.solution-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 315px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: contrast(1.06) saturate(0.98);
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.solution-showcase-card.large .solution-media img {
  height: 365px;
}

@media (hover: hover) and (pointer: fine) {
  .solution-media:hover {
    background: #f5f7f9;
  }

  .solution-media:hover img {
    filter: contrast(1.08) saturate(1.02);
    transform: translateY(-8px) scale(1.06);
  }
}

.ecosystem-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 46px;
  align-items: center;
  color: var(--white);
  background: var(--blue-950);
}

.ecosystem-copy,
.ecosystem-close {
  max-width: 620px;
}

.ecosystem-copy p:not(.eyebrow),
.ecosystem-close {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
}

.ecosystem-map {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  min-height: 320px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.ecosystem-map span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-weight: 800;
}

.ecosystem-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: auto;
  max-height: none;
  overflow: visible;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.ecosystem-flow::before,
.ecosystem-flow::after {
  display: none;
}

.ecosystem-flow::before {
  top: 0;
  background: linear-gradient(180deg, var(--blue-950), rgba(6, 42, 68, 0));
}

.ecosystem-flow::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--blue-950), rgba(6, 42, 68, 0));
}

.ecosystem-lane {
  display: grid;
  gap: 12px;
  align-content: start;
  animation: ecosystemFloatUp 12s ease-in-out infinite;
}

.ecosystem-lane-reverse {
  padding-top: 42px;
  animation-name: ecosystemFloatDown;
  animation-duration: 14s;
}

.ecosystem-card {
  min-height: 132px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ecosystem-card span {
  display: inline-flex;
  min-height: auto;
  margin-bottom: 10px;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.ecosystem-card h3 {
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.12;
}

.ecosystem-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.48;
}

.ecosystem-flow:hover .ecosystem-lane {
  animation-play-state: paused;
}

@keyframes ecosystemFloatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

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

.method-preview {
  color: var(--white);
  background: var(--blue-950);
}

.method-preview .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.method-preview .section-heading {
  margin-bottom: 26px;
}

.method-orbit {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: visible;
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 24% 50%, rgba(255, 255, 255, 0.08) 0 19%, transparent 19.3%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.method-orbit::before {
  content: "";
  position: absolute;
  left: clamp(-260px, -18vw, -130px);
  top: 50%;
  width: min(56vw, 620px);
  aspect-ratio: 1;
  border: 5px solid rgba(24, 167, 216, 0.72);
  border-left-color: transparent;
  border-bottom-color: rgba(155, 170, 189, 0.22);
  border-radius: 999px;
  transform: translateY(-50%);
}

.method-orbit::after {
  content: none;
  position: absolute;
  left: clamp(58px, 11vw, 150px);
  top: 50%;
  width: clamp(180px, 22vw, 290px);
  aspect-ratio: 1;
  background: rgba(232, 238, 244, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transform: translateY(-50%);
}

.method-core {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 6;
  justify-self: center;
  left: auto;
  top: auto;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(210px, 22vw, 300px);
  aspect-ratio: 1;
  padding: 26px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(24, 167, 216, 0.28), transparent 46%),
    rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(24, 167, 216, 0.72);
  border-radius: 999px;
  transform: none;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  animation: methodCorePulse 3200ms ease-in-out infinite;
}

.method-core span {
  color: var(--cyan);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.method-core strong {
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.method-core p {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.35;
}

.method-node {
  position: relative;
  grid-column: 2;
  z-index: 3;
  width: 100%;
  min-height: auto;
  padding: 18px 22px 18px 92px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.method-orbit .method-node:hover {
  transform: translateX(6px);
}

.method-orbit .node-five:hover {
  transform: translateX(6px);
}

.method-node::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 50%;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 167, 216, 0.72), rgba(155, 170, 189, 0.18));
}

.method-node::after {
  content: "";
  position: absolute;
  left: -58px;
  top: 50%;
  width: 22px;
  aspect-ratio: 1;
  background: var(--cyan);
  border: 5px solid var(--blue-950);
  border-radius: 999px;
  transform: translateY(-50%);
  animation: methodPulse 1800ms ease-in-out infinite;
}

.method-node span {
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--cyan));
  border-radius: 16px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.method-node h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(21px, 2vw, 28px);
}

.method-node p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
}

.node-one {
  right: auto;
  top: auto;
}

.node-two {
  right: auto;
  top: auto;
  margin-left: 72px;
}

.node-three {
  right: auto;
  top: auto;
  margin-left: 24px;
}

.node-four {
  right: auto;
  top: auto;
  margin-left: 84px;
}

.node-five {
  right: auto;
  top: auto;
  margin-left: 8px;
  transform: none;
}

.method-orbit .method-node + .method-node {
  margin-top: 16px;
}

@keyframes methodPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(24, 167, 216, 0.22);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(24, 167, 216, 0);
  }
}

@keyframes methodCorePulse {
  0%,
  100% {
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(24, 167, 216, 0.16);
  }
  50% {
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16), 0 0 0 18px rgba(24, 167, 216, 0);
  }
}

.evaluation-callout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.checklist-card,
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checklist-card {
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checklist-card span,
.category-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.evaluation-options {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  background: #f7f9fb;
  border: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(4, 28, 45, 0.08);
  overflow: hidden;
}

.evaluation-lane {
  display: grid;
  gap: 10px;
  align-content: start;
  animation: ecosystemFloatUp 12s ease-in-out infinite;
}

.evaluation-lane-reverse {
  padding-top: 26px;
  animation-name: ecosystemFloatDown;
  animation-duration: 14s;
}

.evaluation-options:hover .evaluation-lane {
  animation-play-state: paused;
}

.evaluation-options article {
  min-height: 96px;
  padding: 18px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(155, 170, 189, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(4, 28, 45, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.evaluation-options article:hover {
  border-color: rgba(24, 167, 216, 0.34);
  box-shadow: 0 18px 36px rgba(4, 28, 45, 0.08);
  transform: translateY(-3px);
}

.evaluation-options span {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--cyan);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.evaluation-options h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.experience-section {
  display: block;
  text-align: center;
}

.experience-section .proof-copy {
  max-width: 820px;
  margin: 0 auto;
}

.experience-section .proof-copy h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.experience-section .proof-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.experience-section .section-action {
  justify-content: center;
  margin-top: 28px;
}

.newsletter-section p:not(.eyebrow) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-form {
  display: grid;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-grid a {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-grid strong {
  color: var(--blue-900);
  font-family: Montserrat, Inter, sans-serif;
}

.contact-grid span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.ecosystem-separator {
  padding: clamp(58px, 7vw, 94px) 24px;
  background: var(--white);
  text-align: center;
}

.ecosystem-separator p {
  width: min(100%, 940px);
  margin: 0 auto;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan) 0%, var(--cyan-soft) 38%, var(--steel) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 950;
  line-height: 1.14;
  text-wrap: balance;
}

.audience-section {
  background: linear-gradient(180deg, var(--white) 0%, #f7f9fb 100%);
}

.audience-section .audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.audience-section .audience-grid .feature-card {
  min-height: 270px;
  padding: clamp(26px, 2.6vw, 36px);
  background: var(--white);
  border: 1px solid rgba(155, 170, 189, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(4, 28, 45, 0.07);
}

.audience-section .audience-grid .feature-card:hover {
  border-color: rgba(24, 167, 216, 0.28);
  box-shadow: 0 28px 70px rgba(4, 28, 45, 0.1);
}

.experience-section .category-list,
.evaluation-callout .checklist-card {
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(155, 170, 189, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(4, 28, 45, 0.06);
}

.experience-section .category-list span,
.evaluation-callout .checklist-card span {
  min-height: 52px;
  padding: 0 22px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(155, 170, 189, 0.24);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(4, 28, 45, 0.05);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 15px;
  font-weight: 850;
}

.experience-section .category-list span:hover,
.evaluation-callout .checklist-card span:hover {
  border-color: rgba(24, 167, 216, 0.34);
  color: var(--blue-800);
  box-shadow: 0 16px 34px rgba(24, 167, 216, 0.1);
}

.newsletter-section {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
  padding: clamp(78px, 8vw, 112px) 24px;
  text-align: center;
}

.newsletter-section > *,
.newsletter-section > div {
  width: min(100%, 880px);
  justify-self: center;
}

.newsletter-section h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 58px);
}

.newsletter-section p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
}

.newsletter-section .newsletter-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 820px);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.newsletter-section .newsletter-form button {
  grid-column: 1 / -1;
}

.contact-brief {
  background: var(--white);
}

.contact-brief .contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-brief .contact-grid a {
  padding: 28px;
  background: #f7f9fb;
  border: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(4, 28, 45, 0.05);
}

.contact-brief .contact-grid a:hover {
  border-color: rgba(24, 167, 216, 0.28);
  box-shadow: 0 24px 54px rgba(4, 28, 45, 0.08);
}

.footer-tagline {
  margin-top: 14px;
  color: var(--cyan-soft);
  font-weight: 850;
}

.footer-social span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .feature-grid.four,
  .feature-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .audience-section .feature-card {
    border-right: 0;
    border-bottom: 1px solid rgba(155, 170, 189, 0.22);
  }

  .audience-section .feature-card:last-child {
    border-bottom: 0;
  }

  .solutions-showcase {
    gap: 22px;
  }

  .solution-showcase-card,
  .solution-showcase-card.large {
    min-height: 500px;
  }

  .solution-showcase-card.large .solution-media img {
    height: 315px;
  }

  .ecosystem-section,
  .experience-section,
  .evaluation-callout {
    grid-template-columns: 1fr;
  }

  .ecosystem-flow {
    max-height: none;
  }

  .method-orbit {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .method-core {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 360px);
  }

  .method-node {
    grid-column: 1;
    width: 100%;
    margin-left: 0;
  }

  .newsletter-section .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .feature-grid.three,
  .feature-grid.four,
  .feature-grid.five,
  .audience-section .audience-grid,
  .evaluation-options,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .solutions-showcase {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .audience-section .feature-grid.five {
    padding: 8px;
  }

  .ecosystem-separator {
    padding: 58px 18px;
  }

  .ecosystem-separator p {
    font-size: clamp(28px, 9vw, 42px);
  }

  .audience-section .audience-grid .feature-card {
    min-height: auto;
  }

  .experience-section .category-list,
  .evaluation-callout .checklist-card {
    padding: 18px;
  }

  .experience-section .category-list span,
  .evaluation-callout .checklist-card span {
    width: 100%;
    justify-content: center;
  }

  .newsletter-section {
    padding: 62px 18px;
  }

  .newsletter-section .newsletter-form {
    padding: 14px;
  }

  .evaluation-lane,
  .evaluation-lane-reverse {
    padding-top: 0;
    animation: none;
  }

  .evaluation-options article {
    min-height: auto;
  }

  .solution-showcase-card:nth-child(even) {
    --stagger: 0px;
  }

  .solution-showcase-card,
  .solution-showcase-card.large {
    min-height: 470px;
    border-radius: 16px;
  }

  .solution-showcase-copy h3 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .solution-media,
  .solution-showcase-card.large .solution-media {
    min-height: 260px;
    margin: 24px -24px -24px;
  }

  .solution-media img,
  .solution-showcase-card.large .solution-media img {
    height: 285px;
  }

  .hero-support {
    font-size: 15px;
  }

  .ecosystem-flow {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
    overflow: visible;
  }

  .ecosystem-flow::before,
  .ecosystem-flow::after {
    display: none;
  }

  .ecosystem-lane,
  .ecosystem-lane-reverse {
    padding-top: 0;
    animation: none;
  }

  .ecosystem-card {
    min-height: auto;
    padding: 22px;
  }

  .method-orbit {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 22px;
    overflow: visible;
  }

  .method-orbit::before,
  .method-orbit::after {
    display: none;
  }

  .method-core,
  .method-node,
  .node-one,
  .node-two,
  .node-three,
  .node-four,
  .node-five {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .method-core {
    width: 100%;
    aspect-ratio: auto;
    min-height: 160px;
    border-radius: 22px;
  }

  .method-node {
    min-height: auto;
    padding: 20px 20px 20px 86px;
  }

  .method-node::before,
  .method-node::after {
    display: none;
  }

  .method-node span {
    left: 20px;
    top: 20px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-lane,
  .ecosystem-lane-reverse {
    animation: none;
  }
}

/* Soluciones page */
.solutions-hero .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: var(--max);
}

.solutions-hero {
  padding-top: 138px;
  padding-bottom: 84px;
}

.solutions-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 5vw, 64px);
}

.solutions-hero p:not(.eyebrow) {
  max-width: 740px;
}

.solutions-hero-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.solutions-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 42, 68, 0.22), transparent 22%, transparent 78%, rgba(6, 42, 68, 0.28)),
    linear-gradient(180deg, rgba(6, 42, 68, 0.18), transparent 36%, rgba(6, 42, 68, 0.24));
  pointer-events: none;
}

.solutions-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  opacity: 0.82;
  filter: saturate(0.9) contrast(1.04);
}

.intro-strategy-section,
.guide-section {
  background: var(--white);
}

.solutions-detail-section {
  background:
    linear-gradient(180deg, #f7f9fb 0%, var(--soft) 100%);
}

.solution-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: 42px;
}

.solution-block {
  --solution-offset: 0px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0;
  min-height: 820px;
  padding: clamp(24px, 2.4vw, 34px);
  overflow: hidden;
  background: #f5f7f9;
  border: 1px solid rgba(155, 170, 189, 0.2);
  border-radius: 20px;
  box-shadow: 0 22px 58px rgba(4, 28, 45, 0.08);
  transform: translateY(var(--solution-offset));
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.solution-block:nth-child(even) {
  --solution-offset: 46px;
}

.solution-block:hover {
  border-color: rgba(0, 70, 127, 0.18);
  box-shadow: 0 28px 70px rgba(4, 28, 45, 0.11);
}

.solution-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 38px;
  color: var(--blue-800);
  background: var(--white);
  border: 1px solid rgba(155, 170, 189, 0.34);
  border-radius: 999px;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
  font-size: 14px;
}

.solution-card-media {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 310px;
  margin: 26px -34px 28px;
  overflow: hidden;
  background: #f5f7f9;
}

.solution-card-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: contrast(1.06) saturate(0.98);
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .solution-card-media:hover img {
    filter: contrast(1.08) saturate(1.02);
    transform: translateY(-8px) scale(1.06);
  }
}

.solution-content h3 {
  max-width: 560px;
  color: #0d1720;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
}

.solution-content > p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.58;
}

.solution-content .solution-support {
  max-width: 640px;
  margin-top: 12px;
  color: var(--blue-800);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 720;
}

.solution-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}

.solution-meta div {
  min-width: 0;
  padding: 18px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(155, 170, 189, 0.24);
  border-radius: 0;
}

.solution-meta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-800);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-meta span,
.solution-meta li {
  color: var(--muted);
}

.solution-meta ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.specialized-solution {
  background:
    radial-gradient(circle at 84% 16%, rgba(24, 167, 216, 0.12), transparent 30%),
    #f5f7f9;
}

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

.founder-strategy-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(26px, 4vw, 54px);
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 167, 216, 0.16), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
  border: 1px solid rgba(24, 167, 216, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 76px rgba(4, 28, 45, 0.16);
}

.founder-strategy-copy h2 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}

.founder-strategy-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.68;
}

.founder-strategy-copy .founder-support {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 720;
}

.founder-highlights {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.founder-highlights li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.founder-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(24, 167, 216, 0.14);
}

.founder-photo {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(100%, 390px);
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.founder-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.question-grid span {
  display: block;
  position: relative;
  padding: 20px 22px 20px 46px;
  color: var(--charcoal);
  background: #f7f9fb;
  border: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: var(--radius);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(4, 28, 45, 0.04);
}

.question-grid span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 26px;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 999px;
}

.final-conversion {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 28, 45, 0.98), rgba(7, 59, 99, 0.94)),
    url("assets/pm-hero-strategy.png") center / cover;
}

.final-conversion-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
  padding: clamp(38px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.final-conversion-inner p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.final-conversion .hero-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .solutions-hero .page-hero-inner,
  .solution-stack {
    grid-template-columns: 1fr;
  }

  .solutions-hero-visual {
    min-height: 300px;
  }

  .solutions-hero-visual img {
    min-height: 300px;
  }

  .solution-block,
  .solution-meta,
  .founder-strategy-card,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .solution-block:nth-child(even) {
    --solution-offset: 0px;
  }

  .founder-photo {
    width: min(100%, 360px);
  }

  .solution-block {
    min-height: auto;
  }

  .solution-number {
    width: 56px;
    height: 36px;
  }

  .solution-card-media {
    min-height: 280px;
  }

  .solution-card-media img {
    height: 305px;
  }
}

@media (max-width: 640px) {
  .solution-block {
    padding: 22px;
  }

  .solution-card-media {
    min-height: 245px;
    margin: 22px -22px 24px;
  }

  .solution-card-media img {
    height: 265px;
  }

  .solution-meta div {
    padding-top: 16px;
  }

  .final-conversion-inner {
    padding: 28px 22px;
  }
}

/* Metodo PM page */
.method-hero {
  padding-top: 128px;
  padding-bottom: 72px;
}

.method-hero .page-hero-inner {
  max-width: 980px;
}

.method-hero h1 {
  max-width: 880px;
  font-size: clamp(40px, 5vw, 64px);
}

.method-hero p:not(.eyebrow) {
  max-width: 760px;
}

.page-hero-support {
  margin-top: 14px;
}

.intro-method-section,
.client-value-section {
  background: var(--white);
}

.method-process-section,
.comparison-section {
  background: var(--soft);
}

.process-timeline {
  display: grid;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(4, 28, 45, 0.08);
}

.process-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 999px;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
}

.process-step h3 {
  color: var(--blue-900);
  font-size: clamp(24px, 3vw, 36px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.process-grid section {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-900);
  font-family: Montserrat, Inter, sans-serif;
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.comparison-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.comparison-card.before {
  background: var(--white);
}

.comparison-card.after {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.comparison-card h3 {
  margin-bottom: 18px;
  color: var(--blue-900);
}

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

.comparison-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 19px;
}

.comparison-card li {
  color: var(--muted);
}

.comparison-card.after li {
  color: rgba(255, 255, 255, 0.78);
}

.audience-method-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 28, 45, 0.96), rgba(7, 59, 99, 0.92)),
    url("assets/pm-hero-strategy.png") center / cover;
}

.audience-method-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.audience-method-inner h2 {
  max-width: 780px;
}

.audience-method-inner p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.audience-method-inner .category-list {
  margin-top: 28px;
}

.evaluation-process-section {
  color: var(--white);
  background: var(--blue-950);
}

.evaluation-process-section .section-heading h2 {
  color: var(--white);
}

.evaluation-process-section .evaluation-timeline.method-orbit {
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 24% 50%, rgba(255, 255, 255, 0.08) 0 19%, transparent 19.3%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.evaluation-process-section .evaluation-step.method-node {
  padding: 18px 22px 18px 92px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: 20px;
}

.evaluation-process-section .evaluation-step.method-node span {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 50px;
  height: 50px;
  margin: 0;
  background: linear-gradient(135deg, var(--blue-800), var(--cyan));
  border-radius: 16px;
}

.evaluation-process-section .evaluation-step.method-node h3 {
  color: var(--blue-900);
}

.evaluation-process-section .evaluation-step.method-node p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .process-step,
  .process-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .process-number {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  .process-step,
  .comparison-card {
    padding: 22px;
  }
}

/* Clientes page */
.clients-hero {
  padding-top: 128px;
  padding-bottom: 76px;
}

.clients-hero .page-hero-inner {
  max-width: 980px;
}

.clients-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 68px);
}

.clients-hero p:not(.eyebrow) {
  max-width: 770px;
}

.client-position-section,
.project-needs-section {
  background: var(--white);
}

.client-logos-section,
.client-value-section {
  background: var(--soft);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.client-logo-card {
  display: grid;
  place-items: center;
  min-height: 138px;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(155, 170, 189, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(4, 28, 45, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 167, 216, 0.45);
  box-shadow: 0 18px 44px rgba(4, 28, 45, 0.1);
}

.client-logo-card img {
  width: 100%;
  max-width: 150px;
  height: 76px;
  object-fit: contain;
  filter: saturate(0.95);
}

.experience-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.experience-category-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(4, 28, 45, 0.07);
}

.experience-category-card h3,
.project-need-card h3 {
  color: var(--blue-900);
}

.experience-category-card p,
.project-need-card p {
  margin-top: 10px;
  color: var(--muted);
}

.project-need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.project-need-card {
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 238, 244, 0.72));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-need-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 999px;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
}

.client-trust-section {
  color: var(--white);
  background: var(--blue-900);
}

.client-trust-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.client-trust-inner h2 {
  max-width: 780px;
}

.client-trust-inner p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.trust-message-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.trust-message-grid span {
  display: block;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .experience-category-grid,
  .trust-message-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .clients-hero {
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .experience-category-grid,
  .project-need-grid,
  .trust-message-grid {
    grid-template-columns: 1fr;
  }

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

  .client-logo-card {
    min-height: 126px;
    padding: 22px;
  }

  .project-need-card,
  .experience-category-card {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .client-logo-grid {
    grid-template-columns: 1fr;
  }
}

/* Evaluacion Digital page */
.evaluation-hero {
  padding-top: 128px;
  padding-bottom: 78px;
}

.evaluation-hero .page-hero-inner {
  max-width: 1000px;
}

.evaluation-hero h1 {
  max-width: 880px;
  font-size: clamp(40px, 5vw, 66px);
}

.evaluation-hero p:not(.eyebrow) {
  max-width: 780px;
}

.evaluation-position-section,
.evaluation-outcomes-section,
.faq-section {
  background: var(--white);
}

.evaluation-review-section,
.evaluation-process-section {
  background: var(--soft);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.review-card {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(4, 28, 45, 0.06);
}

.review-card h3,
.evaluation-step h3,
.form-side-card strong {
  color: var(--blue-900);
}

.review-card p,
.evaluation-step p {
  margin-top: 10px;
  color: var(--muted);
}

.evaluation-audience-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 28, 45, 0.98), rgba(7, 59, 99, 0.92)),
    url("assets/pm-hero-strategy.png") center / cover;
}

.evaluation-audience-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.evaluation-audience-inner h2 {
  max-width: 760px;
}

.evaluation-audience-inner p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.audience-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.audience-checklist span {
  display: block;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 780;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.outcome-grid span {
  display: block;
  min-height: 94px;
  padding: 20px;
  color: var(--blue-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 850;
}

.evaluation-note {
  width: min(100%, 900px);
  margin: 28px auto 0;
  padding: 20px 22px;
  color: var(--muted);
  background: rgba(24, 167, 216, 0.08);
  border: 1px solid rgba(24, 167, 216, 0.24);
  border-radius: var(--radius);
}

.evaluation-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.evaluation-step {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(4, 28, 45, 0.07);
}

.evaluation-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 999px;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
}

.evaluation-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
  background: var(--white);
}

.evaluation-form-copy {
  position: sticky;
  top: 118px;
}

.evaluation-form-copy h2 {
  color: var(--blue-900);
}

.evaluation-form-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.form-side-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-side-card span {
  color: var(--muted);
}

.evaluation-request-form {
  width: min(100%, 790px);
  justify-self: end;
  padding: 30px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.form-full {
  grid-column: 1 / -1;
}

.checkbox-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkbox-fieldset legend {
  padding: 0 8px;
  color: var(--blue-900);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 14px;
  font-weight: 850;
}

.checkbox-fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.checkbox-fieldset input {
  width: 16px;
  min-height: auto;
  height: 16px;
  padding: 0;
  accent-color: var(--cyan);
}

.form-note.sent {
  color: var(--blue-900);
  font-weight: 850;
}

.whatsapp-alternative-section {
  color: var(--white);
  background: var(--blue-900);
}

.whatsapp-alternative-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.whatsapp-alternative-inner p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.whatsapp-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.whatsapp-card strong {
  color: var(--cyan-soft);
  font-family: Montserrat, Inter, sans-serif;
}

.whatsapp-card span {
  color: var(--white);
  font-size: 24px;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .evaluation-form-section,
  .whatsapp-alternative-inner,
  .audience-checklist,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .evaluation-form-copy {
    position: static;
  }

  .evaluation-request-form {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .review-grid,
  .evaluation-timeline,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .evaluation-request-form {
    padding: 22px;
  }

  .checkbox-fieldset {
    display: grid;
  }
}

@media (max-width: 640px) {
  .evaluation-hero {
    padding-top: 112px;
    padding-bottom: 58px;
  }
}

/* Contacto page */
.contact-hero {
  padding-top: 128px;
  padding-bottom: 76px;
}

.contact-hero .page-hero-inner {
  max-width: 980px;
}

.contact-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 68px);
}

.contact-hero p:not(.eyebrow) {
  max-width: 760px;
}

.direct-contact-section,
.contact-form-section,
.social-contact-section {
  background: var(--white);
}

.contact-orientation-section,
.contact-choice-section {
  background: var(--soft);
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-method-card {
  display: grid;
  gap: 10px;
  min-height: 178px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.contact-method-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 167, 216, 0.44);
  box-shadow: 0 18px 44px rgba(4, 28, 45, 0.1);
}

.contact-method-card span,
.contact-method-card small {
  color: var(--muted);
  font-weight: 800;
}

.contact-method-card strong {
  color: var(--blue-900);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(18px, 1.45vw, 20px);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

a[href^="mailto:"].contact-method-card strong {
  font-size: clamp(16px, 1.15vw, 18px);
  white-space: nowrap;
}

.orientation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.orientation-grid span {
  display: block;
  min-height: 88px;
  padding: 20px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(4, 28, 45, 0.06);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.contact-form-copy {
  position: sticky;
  top: 118px;
}

.contact-form-copy h2 {
  color: var(--blue-900);
}

.contact-form-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.contact-request-form {
  width: min(100%, 760px);
  justify-self: end;
  padding: 30px;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-choice-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 300px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-choice-card.featured {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.contact-choice-card h3 {
  color: var(--blue-900);
  font-size: clamp(24px, 3vw, 34px);
}

.contact-choice-card.featured h3 {
  color: var(--white);
}

.contact-choice-card p {
  color: var(--muted);
}

.contact-choice-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-choice-card .button {
  justify-self: start;
  margin-top: auto;
}

.coverage-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 28, 45, 0.98), rgba(7, 59, 99, 0.92)),
    url("assets/pm-hero-strategy.png") center / cover;
}

.coverage-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.coverage-inner h2 {
  max-width: 760px;
}

.coverage-inner p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.coverage-inner span {
  display: inline-flex;
  margin-top: 28px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 850;
}

.social-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.social-link-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 128px;
  padding: 22px;
  color: var(--blue-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 167, 216, 0.44);
  box-shadow: 0 18px 44px rgba(4, 28, 45, 0.1);
}

.social-link-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .contact-method-grid,
  .orientation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .contact-form-section,
  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    position: static;
  }

  .contact-request-form {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .contact-method-grid,
  .orientation-grid,
  .social-link-grid {
    grid-template-columns: 1fr;
  }

  a[href^="mailto:"].contact-method-card strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-request-form,
  .contact-choice-card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding-top: 112px;
    padding-bottom: 58px;
  }
}

/* Iteraciones internas: Soluciones conectadas y Proceso de evaluación */
.evaluation-process-section {
  color: var(--white);
  background: var(--blue-950);
}

.evaluation-process-section .section-heading h2 {
  color: var(--white);
}

.evaluation-process-section .evaluation-timeline.method-orbit {
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 24% 50%, rgba(255, 255, 255, 0.08) 0 19%, transparent 19.3%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.evaluation-process-section .evaluation-step.method-node {
  padding: 18px 22px 18px 92px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(155, 170, 189, 0.22);
  border-radius: 20px;
}

.evaluation-process-section .evaluation-step.method-node span {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 50px;
  height: 50px;
  margin: 0;
  background: linear-gradient(135deg, var(--blue-800), var(--cyan));
  border-radius: 16px;
}

.evaluation-process-section .evaluation-step.method-node h3 {
  color: var(--blue-900);
}

.evaluation-process-section .evaluation-step.method-node p {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .evaluation-process-section .evaluation-timeline.method-orbit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .evaluation-process-section .evaluation-timeline.method-orbit {
    padding: 22px;
  }

  .evaluation-process-section .evaluation-step.method-node {
    padding: 18px 20px 18px 86px;
  }
}

/* Ajustes responsive finales para iPhone */
@media (max-width: 760px) {
  .positioning-section .feature-grid.three {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .positioning-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .positioning-card h3 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
  }

  .positioning-card p {
    max-width: none;
    font-size: 17px;
    line-height: 1.58;
  }

  .positioning-card:not(:last-child)::after {
    display: none;
  }

  .contact-method-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid,
  .contact-brief .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid a,
  .contact-brief .contact-grid a {
    min-width: 0;
  }

  .contact-grid span,
  .contact-brief .contact-grid span {
    overflow-wrap: anywhere;
  }

  .contact-method-card strong {
    overflow-wrap: anywhere;
  }

  .footer-contact {
    text-align: left;
    justify-items: start;
  }

  .footer-contact a {
    width: 100%;
  }
}
