:root {
  --green: #1c6866;
  --green-2: #2b7d79;
  --green-soft: #e8f2f1;
  --ink: #101616;
  --muted: #64706f;
  --line: #e5ecea;
  --soft: #f6faf9;
  --mist: #eef3f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 22, 22, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(229, 236, 234, 0.8);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 196px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(16, 22, 22, 0.74);
}

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

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(16, 22, 22, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(16, 22, 22, 0.76);
}

.nav-submenu a:hover {
  background: rgba(32, 113, 109, 0.08);
  color: var(--ink);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: white;
  background: var(--ink);
}

.btn-secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.btn-whatsapp {
  color: white;
  background: var(--green);
}

.wa-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}

.calc-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.mobile-whatsapp {
  display: none;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-hero {
  min-height: 860px;
  background:
    radial-gradient(circle at 78% 18%, rgba(28, 104, 102, 0.10), transparent 34%),
    linear-gradient(135deg, #f8faf9 0%, #eef3f2 48%, #ffffff 100%);
}

.home-hero .hero-inner {
  padding-bottom: 104px;
}

.hero-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 74px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  padding-top: 4px;
}

.hero-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(28, 104, 102, 0.18);
  border-radius: 999px;
  color: #3b6865;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 40px rgba(16, 22, 22, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.hero-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(28, 104, 102, 0.1);
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1.34;
  max-width: 700px;
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  max-width: 680px;
}

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

.hero-switch {
  margin-top: 30px;
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px;
  border: 1px solid rgba(229, 236, 234, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(16, 22, 22, 0.08);
}

.switch-option {
  border-radius: 12px;
  padding: 17px 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.switch-option strong {
  color: var(--ink);
}

.switch-option span {
  font-size: 13px;
}

.switch-option.active {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.switch-option.active strong {
  color: white;
}

.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 680px;
}

.hero-proof-mobile {
  display: none;
}

.metric {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.metric strong {
  display: block;
  font-size: 26px;
}

.metric span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-report {
  min-height: 620px;
  perspective: 1400px;
}

.mortgage-report-card {
  position: absolute;
  right: 14px;
  top: 76px;
  width: min(540px, 100%);
  min-height: 520px;
  padding: 26px;
  border: 1px solid rgba(229, 236, 234, 0.98);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 34px 110px rgba(16, 22, 22, 0.15);
  transform: rotate(-0.8deg);
  backdrop-filter: blur(22px);
  animation: reportCardIn 1000ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms both, reportFloat 6s ease-in-out 1.2s infinite;
}

.report-head,
.analysis-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.report-head img {
  width: 118px;
  height: auto;
  display: block;
}

.report-head strong {
  color: white;
  background: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.drop-zone {
  margin-top: 18px;
  min-height: 116px;
  border: 2px dashed rgba(28, 104, 102, 0.24);
  border-radius: 18px;
  background: rgba(232, 242, 241, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-badge {
  min-width: 300px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 50px rgba(16, 22, 22, 0.11);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  animation: chipDrift 4.8s ease-in-out 1s infinite;
}

.file-badge > div:first-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.file-badge span {
  color: #9aa6a5;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.file-badge strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.05;
}

.file-badge small {
  color: var(--muted);
  white-space: nowrap;
}

.file-mini-chart {
  width: 54px;
  height: 42px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border-radius: 12px;
  background: #eef6f4;
}

.file-mini-chart i {
  width: 9px;
  border-radius: 999px;
  background: var(--green);
  animation: miniChartPulse 2.8s ease-in-out infinite;
}

.file-mini-chart i:nth-child(1) {
  height: 48%;
  opacity: 0.55;
}

.file-mini-chart i:nth-child(2) {
  height: 78%;
  animation-delay: -0.9s;
}

.file-mini-chart i:nth-child(3) {
  height: 58%;
  opacity: 0.7;
  animation-delay: -1.7s;
}

.analysis-box {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
}

.analysis-title {
  color: var(--muted);
  font-weight: 800;
}

.analysis-title strong {
  color: var(--ink);
}

#heroRateValue {
  display: inline-block;
  min-width: 3ch;
}

.progress-lines {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.progress-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7fa5a2 0%, var(--green) var(--w, 50%), #edf3f1 var(--w, 50%));
  transition: background 700ms ease;
}

.dynamic-stats {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.dynamic-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.dynamic-row strong {
  color: var(--ink);
  font-size: 16px;
  transition: transform 420ms ease, opacity 420ms ease;
}

.dynamic-row strong.value-shift,
#heroRateValue.value-shift,
#heroInterestValue.value-shift {
  opacity: 0.42;
  transform: translateY(-4px);
}

.report-kpis {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.report-kpis div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 12px;
}

.report-kpis strong {
  display: inline-block;
  font-size: 25px;
  color: var(--green);
}

.report-kpis span {
  color: var(--green);
  font-weight: 900;
}

.report-kpis small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.format-bars {
  margin-top: 14px;
  height: 116px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.format-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: #9bb8b5;
  transform-origin: bottom;
  animation: barPulse 3.8s ease-in-out infinite;
}

.format-bars span:nth-child(2) {
  background: var(--green);
  animation-delay: -1.1s;
}

.format-bars span:nth-child(3) {
  background: #bfd2d0;
  animation-delay: -2.2s;
}

.format-bars span:nth-child(4) {
  background: #d9e5e3;
  animation-delay: -0.6s;
}

.floating-tile {
  position: absolute;
  z-index: 3;
  width: 196px;
  padding: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(16, 22, 22, 0.14);
  animation: floatingTileIn 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 680ms both;
}

.floating-tile strong {
  font-size: 22px;
  font-weight: 640;
  line-height: 1.08;
  display: block;
  margin-top: 8px;
}

.floating-tile span {
  display: block;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 800;
  font-size: 13px;
}

.floating-tile small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.floating-read {
  left: 0;
  top: 172px;
  animation-delay: 520ms;
}

.floating-ready {
  right: -10px;
  bottom: -6px;
  animation-delay: 760ms;
}

.file-badge {
  margin-left: 202px;
}

.hero-strategy-visual {
  min-height: 720px;
  perspective: 1400px;
}

.strategy-dashboard-card {
  position: absolute;
  right: 14px;
  top: 26px;
  width: min(560px, 100%);
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(224, 234, 232, 0.98);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 8%, rgba(28, 104, 102, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 252, 251, 0.88));
  box-shadow: 0 34px 110px rgba(16, 22, 22, 0.14);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  animation: reportCardIn 1000ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms both;
  transition: transform 680ms ease, box-shadow 680ms ease;
}

.strategy-dashboard-card.is-changing {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 40px 120px rgba(16, 22, 22, 0.16);
}

.strategy-dashboard-head,
.strategy-profile-card,
.strategy-box-head,
.strategy-saving-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.strategy-dashboard-head img {
  width: 124px;
  height: auto;
  display: block;
}

.strategy-dashboard-head strong {
  color: white;
  background: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.strategy-profile-card {
  margin-top: 16px;
  min-height: 104px;
  padding: 18px;
  border: 1px dashed rgba(28, 104, 102, 0.22);
  border-radius: 22px;
  background: rgba(235, 246, 244, 0.66);
}

.strategy-profile-card span,
.strategy-summary-grid span,
.strategy-box-head span,
.strategy-offer span,
.strategy-saving-card span,
.dashboard-floating-note span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.strategy-profile-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 520;
  line-height: 1.05;
}

.strategy-profile-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.strategy-mini-chart {
  width: 88px;
  height: 68px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(224, 234, 232, 0.9);
}

.strategy-mini-chart i {
  width: 12px;
  height: var(--h, 50%);
  border-radius: 999px;
  background: var(--green);
  opacity: 0.7;
  animation: miniChartPulse 3.2s ease-in-out infinite;
}

.strategy-mini-chart i:nth-child(1) {
  --h: 42%;
  opacity: 0.45;
}

.strategy-mini-chart i:nth-child(2) {
  --h: 72%;
  animation-delay: -0.8s;
}

.strategy-mini-chart i:nth-child(3) {
  --h: 54%;
  animation-delay: -1.7s;
}

.strategy-mini-chart i:nth-child(4) {
  --h: 84%;
  opacity: 0.38;
  animation-delay: -2.4s;
}

.strategy-summary-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.strategy-summary-grid div {
  min-height: 78px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.strategy-summary-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 22px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.strategy-compare-box {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.strategy-box-head strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
}

.strategy-bank-track {
  position: relative;
  margin-top: 15px;
  height: 10px;
  border-radius: 999px;
  background: #edf3f1;
  overflow: hidden;
}

.strategy-bank-track i {
  display: block;
  width: var(--w, 30%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9bb8b5, var(--green));
  transition: width 1800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.strategy-bank-track em {
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: translateX(-120%);
  animation: bankScan 3.6s ease-in-out infinite;
}

.strategy-compare-box p {
  min-height: 40px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.strategy-route-strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.strategy-results {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.strategy-route-strip div {
  min-height: 62px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.strategy-route-strip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.strategy-route-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.1;
}

.strategy-route-strip i {
  height: 1px;
  background: linear-gradient(90deg, rgba(28, 104, 102, 0.16), rgba(28, 104, 102, 0.55), rgba(28, 104, 102, 0.16));
  position: relative;
}

.strategy-route-strip i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(28, 104, 102, 0.65);
  border-right: 1px solid rgba(28, 104, 102, 0.65);
  transform: translateY(-50%) rotate(45deg);
}

.strategy-offers {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.strategy-offer {
  min-height: 104px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  transition: opacity 720ms ease, transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1), border-color 700ms ease, background 700ms ease, box-shadow 700ms ease;
}

.strategy-dashboard-card.is-analyzing .strategy-results {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.strategy-offer strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 560;
}

.strategy-offer small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.25;
}

.strategy-offer.is-active,
.strategy-offer-best {
  border-color: rgba(28, 104, 102, 0.24);
  background: rgba(232, 245, 243, 0.92);
  box-shadow: 0 16px 44px rgba(28, 104, 102, 0.10);
  transform: translateY(-4px);
}

.strategy-offer-best strong {
  color: var(--green);
}

.strategy-saving-card {
  margin-top: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(28, 104, 102, 0.16);
  background: linear-gradient(135deg, rgba(232, 245, 243, 0.92), rgba(255, 255, 255, 0.92));
  transition: opacity 720ms ease, transform 720ms ease;
}

.strategy-saving-card strong {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 25px;
  font-weight: 560;
  white-space: nowrap;
}

.strategy-saving-card small {
  max-width: 300px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.dashboard-floating-note {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 22, 22, 0.12);
  backdrop-filter: blur(18px);
  animation: floatingTileIn 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 680ms both, chipDrift 5.6s ease-in-out 1.5s infinite;
}

.dashboard-floating-note strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.12;
}

.note-bank {
  left: 2px;
  top: 204px;
}

.note-broker {
  right: -6px;
  bottom: 96px;
  animation-delay: 820ms;
}

.strategy-dashboard-card .value-shift,
.strategy-dashboard-card .value-shift strong {
  opacity: 0.7;
  transform: translateY(-2px);
  transition: opacity 380ms ease, transform 380ms ease;
}

@keyframes bankScan {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  20%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(250%);
    opacity: 0;
  }
}

.section {
  padding: 92px 22px;
}

.services-bento-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-title {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.34;
}

.section-title p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-title .display-title {
  margin: 0 auto 10px;
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.02;
}

.home-hero h1 {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1.34;
}

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

.faq-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.faq-grid {
  width: min(920px, 100%);
  margin: 42px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbfa;
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 800;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 900;
}

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

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-final {
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 190px;
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.strategy-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.strategy-options {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strategy-option {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(16, 22, 22, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.strategy-option:hover {
  transform: translateY(-8px);
  border-color: rgba(28, 104, 102, 0.25);
  box-shadow: 0 28px 85px rgba(16, 22, 22, 0.1);
}

.option-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.option-head strong {
  color: var(--green);
}

.strategy-option h3 {
  margin-top: auto;
  font-size: 27px;
  line-height: 1.12;
}

.strategy-option p {
  color: var(--muted);
  line-height: 1.55;
}

.case-map,
.bank-board,
.diagnostic-wheel {
  margin: 30px 0;
  min-height: 190px;
}

.case-map {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
}

.case-node {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 900;
}

.case-node.active {
  color: white;
  background: var(--green);
  box-shadow: 0 18px 45px rgba(28, 104, 102, 0.24);
}

.case-line {
  height: 2px;
  background: var(--line);
}

.bank-board {
  display: grid;
  gap: 14px;
  align-content: center;
}

.bank-board div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  padding: 14px;
}

.bank-board b {
  display: block;
  margin-bottom: 10px;
}

.bank-board i,
.about-meter i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) var(--w), #dce8e6 var(--w));
  transition: background 420ms ease;
}

.diagnostic-wheel {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  place-content: center;
  text-align: center;
  background: conic-gradient(var(--green) 0 76%, #dce8e6 76% 100%);
  position: relative;
}

.diagnostic-wheel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: white;
}

.diagnostic-wheel span,
.diagnostic-wheel small {
  position: relative;
  z-index: 1;
}

.diagnostic-wheel span {
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
}

.diagnostic-wheel small {
  color: var(--muted);
  font-weight: 800;
}

.strategy-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(16, 22, 22, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(28, 104, 102, 0.22);
  box-shadow: 0 26px 70px rgba(16, 22, 22, 0.08);
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.strategy-card h3 {
  margin-top: 28px;
  font-size: 23px;
  line-height: 1.15;
}

.strategy-card p {
  color: var(--muted);
  line-height: 1.55;
}

.mini-chart {
  margin-top: auto;
  min-height: 76px;
  border-radius: 16px;
  background: var(--green-soft);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px;
}

.mini-chart i {
  flex: 1;
  border-radius: 6px;
  background: #aab3b1;
}

.mini-chart i:nth-child(1) { height: 32%; }
.mini-chart i:nth-child(2) { height: 56%; background: #8f9997; }
.mini-chart i:nth-child(3) { height: 42%; }
.mini-chart i:nth-child(4) { height: 68%; background: var(--green); }

.strategy-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.strategy-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 800;
}

.about-system-section {
  background: white;
}

.about-system {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: stretch;
}

.about-controls {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--soft);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.about-control {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  padding: 0 18px;
}

.about-control.active {
  color: white;
  background: var(--ink);
}

.about-live-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(28, 104, 102, 0.12), transparent 36%),
    #ffffff;
  padding: 34px;
  min-height: 360px;
  box-shadow: 0 26px 90px rgba(16, 22, 22, 0.08);
  transition: opacity 220ms ease, transform 220ms ease;
}

.about-live-card.is-changing {
  opacity: 0.55;
  transform: translateY(6px);
}

.about-live-card span {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.about-live-card h3 {
  margin-top: 26px;
  max-width: 640px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.about-live-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.about-meter {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.about-proof {
  display: grid;
  gap: 12px;
}

.about-proof div {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  padding: 22px;
}

.about-proof strong {
  display: block;
  font-size: 34px;
}

.about-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.strategy-map-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(28, 104, 102, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.strategy-map-final {
  position: relative;
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.strategy-intro {
  margin: 34px auto 0;
  width: min(820px, 100%);
  border: 1px solid rgba(28, 104, 102, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 24px 28px;
  box-shadow: 0 18px 58px rgba(16, 22, 22, 0.06);
  text-align: center;
}

.strategy-intro p {
  margin: 0;
  color: #314241;
  font-size: 19px;
  line-height: 1.58;
}

.route-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 24px;
  background: transparent;
  transform-origin: left;
  animation: routeGrow 1400ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 999px;
}

.route-line::before {
  top: 11px;
  height: 2px;
  background: linear-gradient(90deg, rgba(186, 201, 199, 0.2), rgba(186, 201, 199, 0.92), rgba(186, 201, 199, 0.2));
}

.route-line::after {
  top: 2px;
  height: 20px;
  background:
    radial-gradient(ellipse at 0 50%, rgba(28, 104, 102, 0.0) 0 18px, rgba(28, 104, 102, 0.62) 19px 24px, rgba(28, 104, 102, 0.0) 25px),
    linear-gradient(90deg, transparent, rgba(28, 104, 102, 0.72), transparent),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(186, 201, 199, 0.55) 55px 57px, transparent 58px 112px);
  background-size: 160px 20px, 100% 20px, 140px 20px;
  opacity: 0.86;
  animation: routeSnake 9s ease-in-out infinite;
}

.route-step {
  position: relative;
  z-index: 1;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  padding: 24px;
  box-shadow: 0 20px 58px rgba(16, 22, 22, 0.06);
  animation: routeFloat 6.4s ease-in-out infinite;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.route-step:hover {
  transform: translateY(-10px);
  border-color: rgba(28, 104, 102, 0.26);
  box-shadow: 0 30px 86px rgba(16, 22, 22, 0.1);
}

.route-step:nth-of-type(3) {
  animation-delay: -1.6s;
}

.route-step:nth-of-type(4) {
  animation-delay: -3.2s;
}

.route-step:nth-of-type(5) {
  animation-delay: -4.8s;
}

.route-step-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.route-step-mark span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(28, 104, 102, 0.22);
}

.route-step-mark i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: white;
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(28, 104, 102, 0.12), 0 12px 34px rgba(16, 22, 22, 0.06);
}

.route-step-mark svg {
  display: block;
  width: 29px;
  height: 29px;
}

.route-step-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-step.active .route-step-mark i {
  transform: scale(1.05);
  box-shadow: inset 0 0 0 1px rgba(28, 104, 102, 0.18), 0 18px 46px rgba(16, 22, 22, 0.1);
}

.route-step h3 {
  margin-top: 44px;
  font-size: 28px;
}

.route-step p {
  color: var(--muted);
  line-height: 1.58;
}

.strategy-note {
  margin: 22px auto 0;
  width: min(780px, 100%);
  border: 1px solid rgba(28, 104, 102, 0.18);
  border-radius: 24px;
  background: rgba(232, 242, 241, 0.68);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: center;
  align-items: center;
}

.strategy-note strong {
  font-size: 23px;
  line-height: 1.15;
}

.strategy-note p {
  margin: 0;
  color: #3f5351;
  line-height: 1.62;
}

.mortgage-types-section {
  overflow: visible;
  background: #ffffff;
}

.mortgage-rail {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 1180px;
  overflow: visible;
  padding: 26px 0 42px;
  perspective: 1200px;
  --card-w: clamp(150px, 16vw, 220px);
  --overlap: clamp(-20px, -1.8vw, -12px);
}

.mortgage-types-section .section-inner {
  overflow: visible;
}

.mortgage-slide {
  flex: 0 0 var(--card-w);
  min-height: 380px;
  margin-left: var(--overlap);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 249, 0.96)),
    white;
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 65px rgba(16, 22, 22, 0.06);
  transform: translateX(var(--dock-shift, 0px)) translateY(var(--base-y, 0px)) translateY(var(--dock-lift, 0px)) rotate(var(--r, 0deg)) scale(var(--dock-scale, 1));
  transform-origin: 50% 110%;
  will-change: transform;
  transition: transform 180ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.mortgage-slide:first-child {
  margin-left: 0;
}

.mortgage-slide:nth-child(1) { --r: -5deg; --base-y: 18px; z-index: 1; }
.mortgage-slide:nth-child(2) { --r: -3deg; --base-y: 8px; z-index: 2; }
.mortgage-slide:nth-child(3) { --r: -1deg; --base-y: 0px; z-index: 3; }
.mortgage-slide:nth-child(4) { --r: 1deg; --base-y: 0px; z-index: 4; }
.mortgage-slide:nth-child(5) { --r: 3deg; --base-y: 8px; z-index: 5; }

.mortgage-rail:hover .mortgage-slide {
  transform: translateX(var(--dock-shift, 0px)) translateY(var(--dock-lift, 0px)) rotate(0deg) scale(var(--dock-scale, 1));
}

.mortgage-slide:hover {
  border-color: rgba(28, 104, 102, 0.28);
  box-shadow: 0 32px 92px rgba(16, 22, 22, 0.11);
  z-index: 20;
}

.mortgage-rail:hover .mortgage-slide:not(:hover) {
  opacity: 0.86;
}

.mortgage-slide span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.mortgage-slide h3 {
  margin-top: auto;
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.05;
}

.mortgage-slide p {
  color: var(--muted);
  line-height: 1.58;
  font-size: clamp(14px, 1.2vw, 16px);
}

.slide-meter {
  margin-top: 20px;
  height: 10px;
  border-radius: 999px;
  background: #e8efee;
  overflow: hidden;
}

.slide-meter i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fb2ae, var(--green));
  animation: meterBreath 3.8s ease-in-out infinite;
}

.service-showcase {
  margin-top: 48px;
  display: grid;
  gap: 34px;
}

.service-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 22, 22, 0.06);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 310px;
}

.service-copy {
  padding: clamp(28px, 4vw, 48px);
}

.service-copy > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-copy h3 {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.service-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.mini-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-widget {
  padding: clamp(24px, 3.5vw, 40px);
  background: #f4f2eb;
  border-left: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 12px;
}

.service-widget > p {
  margin: 0 0 8px;
  color: #334441;
  font-size: 14px;
}

.service-widget div:not(.score-cycle):not(.score-state):not(.score-ring):not(.score-grid):not(.country-tabs) {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: #283836;
}

.service-widget span,
.service-widget small {
  color: #4d5c59;
  font-size: 13px;
}

.service-widget strong {
  color: var(--ink);
  font-size: 17px;
}

.bar {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e7e5dc;
  overflow: hidden;
}

.bar::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 850ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms ease;
}

.bar.grey::before { background: #8b8880; }
.bar.dark::before { background: var(--ink); }

.saving {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 22, 22, 0.12);
}

.saving strong {
  color: var(--green);
  font-size: 24px;
}

.score-cycle {
  position: relative;
  width: 150px;
  height: 178px;
  margin: 0 auto 10px;
}

.score-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  animation: scoreChain 12s ease-in-out infinite;
}

.score-state.profile-red {
  animation-delay: 0s;
}

.score-state.officials {
  animation-delay: 3s;
}

.score-state.second-red {
  animation-delay: 6s;
}

.score-state.profile-green {
  animation-delay: 9s;
}

.score-ring {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  border: 13px solid var(--green);
  background: #fff;
}

.score-state.profile-red .score-ring {
  border-color: #b94343;
}

.score-state.profile-green .score-ring {
  border-color: #2f8c63;
}

.score-ring strong {
  font-size: 36px;
}

.score-ring small {
  display: block;
}

.score-state > span {
  margin-top: 10px;
  font-weight: 800;
  color: var(--green);
}

.score-state.profile-red > span {
  color: #b94343;
}

.score-state.profile-green > span {
  color: #2f8c63;
}

.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.score-grid.two {
  grid-template-columns: 1fr 1fr;
}

.score-grid > div {
  padding: 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  display: grid !important;
  gap: 3px !important;
}

.score-grid strong {
  color: var(--green);
  font-size: 18px;
}

.rate-cycle {
  position: relative;
  min-height: 68px;
}

.rate-cycle strong {
  grid-column: 1;
  grid-row: 2;
  font-size: 34px;
  line-height: 0.8;
}

.rate-cycle .rate-down {
  color: var(--green);
  animation: scoreRateDown 12s ease-in-out infinite;
}

.rate-cycle .rate-up {
  color: #b94343;
  animation: scoreRateUp 12s ease-in-out infinite;
}

.country-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.country-tabs button,
.select-like {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.country-tabs button.active {
  border-color: rgba(28, 104, 102, 0.28);
  background: rgba(223, 238, 234, 0.82);
  color: var(--green);
}

.docs-widget ul,
.docs-widget [data-doc-financing],
.docs-widget [data-doc-term] {
  transition: opacity 220ms ease, transform 220ms ease;
}

.docs-widget.is-updating ul,
.docs-widget.is-updating [data-doc-financing],
.docs-widget.is-updating [data-doc-term] {
  opacity: 0.42;
  transform: translateY(4px);
}

.widget-field {
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(16, 22, 22, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
}

.widget-field span {
  font-weight: 700;
}

.widget-field strong {
  font-size: 21px;
}

.widget-field input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.widget-field select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.docs-widget ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.docs-widget li {
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.docs-widget li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.slider-line {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: #e4e1d8;
}

.slider-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--x);
  width: 18px;
  height: 18px;
  border: 1px solid #bab6ad;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: left 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.saving.total {
  border: 0;
  padding: 13px 14px;
  border-radius: 10px;
  background: #dfeeea;
}

@keyframes scoreChain {
  0%, 5% { opacity: 0; transform: scale(0.985) translateY(6px); }
  9%, 21% { opacity: 1; transform: scale(1) translateY(0); }
  26%, 100% { opacity: 0; transform: scale(0.985) translateY(6px); }
}

@keyframes scoreRateDown {
  0%, 30% { opacity: 0; transform: translateY(4px); }
  36%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(4px); }
}

@keyframes scoreRateUp {
  0%, 30% { opacity: 1; transform: translateY(0); }
  36%, 100% { opacity: 0; transform: translateY(4px); }
}

.services-hero .page-hero-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.services-focus {
  position: relative;
  min-height: 440px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 113, 109, 0.08), transparent 32%),
    transparent;
  overflow: visible;
  box-shadow: none;
}

.services-focus::before {
  content: "";
  position: absolute;
  inset: 78px 58px;
  border: 1px dashed rgba(32, 113, 109, 0.24);
  border-radius: 999px;
  transform: rotate(-5deg);
}

.services-focus-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(32, 113, 109, 0.18);
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 60px rgba(16, 22, 22, 0.12);
}

.services-focus-center img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.services-focus-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(88px, 8vw, 116px);
  height: clamp(88px, 8vw, 116px);
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(32, 113, 109, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(16, 22, 22, 0.08);
  animation: serviceFocusPulse 10s ease-in-out infinite;
  animation-delay: calc(var(--i) * -2s);
}

.services-focus-item span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.services-focus-item-1 { transform: translate(-50%, -50%) translate(-142px, 112px); }
.services-focus-item-2 { transform: translate(-50%, -50%) translate(-154px, -54px); }
.services-focus-item-3 { transform: translate(-50%, -50%) translate(-10px, -128px); }
.services-focus-item-4 { transform: translate(-50%, -50%) translate(138px, -66px); }
.services-focus-item-5 { transform: translate(-50%, -50%) translate(126px, 104px); }

@keyframes serviceFocusPulse {
  0%, 100% {
    scale: 0.92;
    opacity: 0.74;
    background: rgba(255, 255, 255, 0.76);
  }
  18%, 30% {
    scale: 1.1;
    opacity: 1;
    background: rgba(223, 238, 234, 0.96);
    box-shadow: 0 18px 46px rgba(32, 113, 109, 0.16);
  }
}

.personal-difference-section {
  background:
    linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
}

.difference-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.difference-photo,
.difference-card {
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 20px 68px rgba(16, 22, 22, 0.06);
}

.difference-main {
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: grid;
  gap: 18px;
  align-content: start;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.portrait-copy {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.portrait-copy span {
  width: fit-content;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.portrait-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
  margin: 0;
}

.portrait-copy p strong {
  color: var(--ink);
  font-weight: 600;
}

.difference-photo {
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  background: #f4f8f7;
}

.portrait-stage {
  position: relative;
  min-height: 620px;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 242, 241, 0.92), rgba(255, 255, 255, 0.82)),
    #edf4f3;
  box-shadow: inset 0 0 0 1px rgba(28, 104, 102, 0.08);
}

.portrait-stage::before {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 38%;
  border-radius: 999px 999px 0 0;
  background: rgba(28, 104, 102, 0.12);
  filter: blur(28px);
}

.portrait-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.portrait-stage figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
}

.difference-stack {
  display: grid;
  gap: 12px;
}

.difference-card {
  border-radius: 20px;
  padding: 22px 24px;
  transition: transform 300ms ease, border-color 300ms ease;
}

.difference-card:hover {
  transform: translateX(6px);
  border-color: rgba(28, 104, 102, 0.28);
}

.difference-card strong {
  display: block;
  font-size: 19px;
}

.difference-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 0;
}

.bank-spain-section {
  padding-top: 66px;
  padding-bottom: 66px;
  background: white;
}

.bank-spain-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 74px rgba(16, 22, 22, 0.06);
  min-height: 210px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1px minmax(280px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.bank-logo-text {
  text-align: right;
}

.bank-logo-text strong {
  display: block;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.bank-logo-text strong::first-letter {
  font-weight: 300;
}

.bank-logo-text span {
  display: block;
  margin-top: 6px;
  font-size: clamp(24px, 2.8vw, 40px);
  color: #252b2b;
}

.bank-divider {
  width: 1px;
  height: 144px;
  background: #222727;
}

.bank-copy {
  display: grid;
  gap: 13px;
  color: #202727;
  font-size: clamp(20px, 2.4vw, 29px);
}

.bank-copy p {
  margin: 0;
}

.reviews-dynamic-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(28, 104, 102, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: end;
}

.review-score {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  padding: 24px;
  box-shadow: 0 22px 70px rgba(16, 22, 22, 0.08);
}

.review-score strong {
  display: block;
  font-size: 56px;
  line-height: 1;
  color: var(--green);
}

.review-score span {
  display: block;
  margin-top: 10px;
  color: var(--green);
  letter-spacing: 0.12em;
  font-weight: 900;
}

.review-score small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.review-marquee {
  margin-top: 34px;
  width: 100%;
  border: 1px solid rgba(229, 236, 234, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
  box-shadow: none;
  position: relative;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f8fbfa, rgba(248, 251, 250, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f8fbfa, rgba(248, 251, 250, 0));
}

.google-review-wall {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.google-review-card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  box-shadow: 0 24px 72px rgba(16, 22, 22, 0.07);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.google-review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(28, 104, 102, 0.24);
  box-shadow: 0 34px 92px rgba(16, 22, 22, 0.11);
}

.google-review-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.google-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.google-review-top strong,
.google-review-top small {
  display: block;
}

.google-review-top small {
  margin-top: 4px;
  color: var(--muted);
}

.google-stars {
  margin-top: 24px;
  color: var(--green);
  letter-spacing: 0.12em;
  font-weight: 900;
}

.google-review-card p {
  color: #33413f;
  line-height: 1.62;
  font-size: 17px;
}

.google-mark {
  position: absolute;
  right: 22px;
  bottom: 16px;
  color: rgba(28, 104, 102, 0.09);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}

.review-track {
  width: max-content;
  display: flex;
  gap: 22px;
  padding: 12px 0;
  animation: marqueeMove 42s linear infinite;
}

.review-track span {
  border-radius: 999px;
  background: transparent;
  color: rgba(16, 22, 22, 0.66);
  padding: 0 4px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.review-track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 22px;
  border-radius: 50%;
  background: rgba(28, 104, 102, 0.42);
  vertical-align: middle;
}

.kinetic-title .kinetic-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordIn 780ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 70ms);
}

.motion-card {
  opacity: 0;
  transform: none;
}

.motion-section .section-title,
.motion-card,
.hero-copy,
.hero-report {
  opacity: 1;
  filter: none;
  translate: 0 0;
}

.mortgage-slide {
  opacity: 1;
  filter: none;
  translate: 0 0;
}

.scroll-active {
  will-change: transform;
}

.apple-scroll-fx {
  --scroll-progress: 0;
  --fx-delay: 0;
  --fx-offset: calc((1 - var(--scroll-progress)) * 28px);
  --fx-scale: calc(0.982 + (var(--scroll-progress) * 0.018));
  opacity: calc(0.62 + (var(--scroll-progress) * 0.38));
  transform: translate3d(0, var(--fx-offset), 0) scale(var(--fx-scale));
  transform-origin: center center;
  transition:
    opacity 260ms linear,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-scroll-fx.scroll-active {
  will-change: transform, opacity;
}

.personal-difference-section .apple-scroll-fx,
.strategy-map-section .section-title.apple-scroll-fx,
.strategy-map-section .strategy-title-clean.apple-scroll-fx,
.difference-card.apple-scroll-fx {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.home-hero .apple-scroll-fx {
  --fx-offset: calc((1 - var(--scroll-progress)) * 18px);
}

.page-hero .apple-scroll-fx,
.page-hero-inner.apple-scroll-fx {
  --fx-offset: calc((1 - var(--scroll-progress)) * 22px);
  --fx-scale: calc(0.985 + (var(--scroll-progress) * 0.015));
}

.apple-scroll-fx.hero-report,
.apple-scroll-fx.portrait-stage,
.apple-scroll-fx.bank-spain-card,
.page-hero-visual.apple-scroll-fx,
.services-focus.apple-scroll-fx {
  --fx-offset: calc((1 - var(--scroll-progress)) * 34px);
  --fx-scale: calc(0.975 + (var(--scroll-progress) * 0.025));
}

.content-layout > article.apple-scroll-fx,
.faq-item.apple-scroll-fx,
.service-final-cta.apple-scroll-fx,
.contact-panel.apple-scroll-fx,
.calc-panel.apple-scroll-fx,
.result-panel.apple-scroll-fx {
  --fx-offset: calc((1 - var(--scroll-progress)) * 30px);
  --fx-scale: calc(0.98 + (var(--scroll-progress) * 0.02));
}

.process-lab .apple-scroll-fx,
.process-lab .section-title,
.process-lab .timeline-step,
.process-lab .motion-card {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .apple-scroll-fx {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.motion-card.visible {
  transition: opacity 720ms ease, translate 720ms ease, filter 720ms ease, transform 720ms ease;
}

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

.service-card,
.blog-card,
.legal-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 26px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.blog-hero {
  padding-top: 100px;
  padding-bottom: 44px;
  background: #ffffff;
  border-bottom: 0;
  text-align: center;
}

.blog-hero .page-hero-inner {
  width: min(1180px, 100%);
}

.blog-hero .display-title {
  max-width: none;
  margin: 0 auto 18px;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 720;
}

.blog-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(16, 22, 22, 0.56);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.45;
}

.blog-index-section {
  background: #ffffff;
  padding-top: 28px;
}

.blog-editorial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.blog-editorial-grid .blog-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 24px;
  padding: 0 0 36px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: none;
}

.blog-card-full-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.blog-editorial-grid .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 58px rgba(16, 22, 22, 0.08);
}

.blog-card-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(135deg, #13201f, #1d6f6b);
}

.blog-card-visual span {
  position: absolute;
  left: 26px;
  top: 26px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.blog-card-visual strong {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.blog-card-visual i {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.blog-card-visual i:nth-of-type(1) {
  width: 26%;
  height: 46%;
  left: 18%;
  top: 28%;
  transform: rotate(-4deg);
}

.blog-card-visual i:nth-of-type(2) {
  width: 27%;
  height: 50%;
  left: 41%;
  top: 22%;
  background: rgba(225, 242, 239, 0.9);
  transform: rotate(3deg);
}

.blog-card-visual i:nth-of-type(3) {
  width: 21%;
  height: 38%;
  left: 66%;
  top: 34%;
  background: rgba(255, 255, 255, 0.64);
  transform: rotate(-2deg);
}

.visual-2 { background: linear-gradient(135deg, #e8efed, #ffffff 42%, #1d6f6b); }
.visual-3 { background: linear-gradient(135deg, #101616, #2a827f); }
.visual-4 { background: linear-gradient(135deg, #dfe9e7, #f8fbfa 42%, #b8d2cf); }
.visual-5 { background: linear-gradient(135deg, #1d6f6b, #eff5f4); }
.visual-6 { background: linear-gradient(135deg, #101616, #3d5956 55%, #f7faf9); }

.blog-editorial-grid .blog-card .tag,
.blog-editorial-grid .blog-card h3,
.blog-editorial-grid .blog-card .blog-date {
  margin-left: 32px;
  margin-right: 32px;
}

.blog-editorial-grid .blog-card .tag {
  margin-top: 30px;
  color: rgba(16, 22, 22, 0.48);
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
}

.blog-editorial-grid .blog-card h3 {
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.13;
  letter-spacing: -0.018em;
  font-weight: 640;
}

.blog-date {
  margin-top: auto;
  color: rgba(16, 22, 22, 0.46);
  font-size: 16px;
  line-height: 1.4;
}

.post-hero {
  background: #f3f5f4;
  border-bottom: 0;
}

.post-hero .page-hero-inner {
  width: min(880px, 100%);
}

.post-hero h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(42px, 6.4vw, 76px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.post-hero .lead {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(16, 22, 22, 0.66);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.post-meta {
  margin-top: 22px;
  color: rgba(16, 22, 22, 0.48);
  font-size: 14px;
  font-weight: 750;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 104, 102, 0.32);
  box-shadow: 0 22px 50px rgba(16, 22, 22, 0.08);
}

.service-card h3 {
  font-size: 25px;
  line-height: 1.15;
}

.service-card p,
.blog-card p,
.legal-card p,
.trust-card p {
  color: var(--muted);
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}

.process-lab {
  background:
    radial-gradient(circle at 20% 8%, rgba(28, 104, 102, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 42px;
}

.timeline-process {
  position: relative;
  margin: 66px auto 0;
  width: min(920px, 100%);
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  row-gap: 28px;
  overflow: visible;
  padding: 18px 0 28px;
}

.timeline-spine {
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 28px;
  width: 92px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='92' height='180' viewBox='0 0 92 180' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M46 0 C46 36 78 42 78 76 C78 112 14 104 14 140 C14 162 30 174 46 180' stroke='%23526370' stroke-width='4' stroke-linecap='round' stroke-dasharray='1 10'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 92px 180px;
  opacity: 0.9;
}

.timeline-spine::after {
  content: none;
}

.timeline-step {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  align-items: center;
  min-height: 138px;
  animation: timelineFloat 6s ease-in-out infinite;
}

.timeline-step:nth-of-type(2) { animation-delay: -0.8s; }
.timeline-step:nth-of-type(3) { animation-delay: -1.6s; }
.timeline-step:nth-of-type(4) { animation-delay: -2.4s; }
.timeline-step:nth-of-type(5) { animation-delay: -3.2s; }
.timeline-step:nth-of-type(6) { animation-delay: -4s; }

.timeline-step h3,
.timeline-step p {
  grid-column: 1;
  justify-self: end;
  width: min(330px, 100%);
  text-align: right;
}

.timeline-step:nth-of-type(even) h3,
.timeline-step:nth-of-type(even) p {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

.timeline-step span {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: white;
  background: var(--green);
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 18px 52px rgba(28, 104, 102, 0.28);
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.08;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.about-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.about-copy {
  font-size: 21px;
  line-height: 1.65;
  color: #2c3837;
}

.about-list {
  display: grid;
  gap: 14px;
}

.trust-card strong {
  display: block;
  font-size: 30px;
  margin-bottom: 8px;
}

.reviews-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--soft);
  min-height: 220px;
}

.stars {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.review-card p {
  color: #33413f;
  line-height: 1.6;
  margin: 18px 0;
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reportCardIn {
  from {
    opacity: 0;
    transform: translateY(42px) rotate(-0.8deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-0.8deg) scale(1);
  }
}

@keyframes reportFloat {
  0%, 100% {
    transform: translateY(0) rotate(-0.8deg);
  }
  50% {
    transform: translateY(-10px) rotate(-0.2deg);
  }
}

@keyframes chipDrift {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
}

@keyframes barPulse {
  0%, 100% {
    transform: scaleY(0.78) translateY(0);
    opacity: 0.82;
  }
  28% {
    transform: scaleY(1.08) translateY(-2px);
    opacity: 1;
  }
  62% {
    transform: scaleY(0.58) translateY(1px);
    opacity: 0.76;
  }
  84% {
    transform: scaleY(0.96) translateY(-1px);
    opacity: 1;
  }
}

@keyframes miniChartPulse {
  0%, 100% {
    transform: scaleY(0.62);
  }
  45% {
    transform: scaleY(1);
  }
}

@keyframes floatingTileIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes routeGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes routeSnake {
  from {
    background-position: 0 0, 0 0, 0 0;
    transform: translateY(-8px);
  }
  50% {
    background-position: 170px 10px, 0 0, 70px 0;
    transform: translateY(8px);
  }
  to {
    background-position: 340px 0, 0 0, 140px 0;
    transform: translateY(-8px);
  }
}

@keyframes routeSnakeVertical {
  from {
    background-position: 0 0, 0 0;
    transform: translateX(1px);
  }
  50% {
    transform: translateX(-2px);
  }
  to {
    background-position: 0 300px, 0 0;
    transform: translateX(1px);
  }
}

@keyframes routeFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes mortgageRail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% + min(1180px, 100vw - 44px)));
  }
}

@keyframes timelineScan {
  from {
    transform: translateX(-8%);
  }
  to {
    transform: translateX(320%);
  }
}

@keyframes timelineScanVertical {
  from {
    transform: translateY(-12%);
  }
  to {
    transform: translateY(320%);
  }
}

@keyframes timelineFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes meterBreath {
  0%, 100% {
    transform: scaleX(0.92);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@supports (animation-timeline: view()) {
  .motion-section .section-title {
    animation: sectionLift both ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .difference-main,
  .difference-photo,
  .bank-spain-card {
    animation: premiumSurface both ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  .timeline-step {
    animation: timelineReveal both cubic-bezier(0.2, 0.9, 0.2, 1);
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }

  .portrait-stage img {
    animation: portraitParallax both ease-out;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
}

@keyframes sectionLift {
  from {
    opacity: 0.72;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premiumSurface {
  from {
    opacity: 0.72;
    transform: translateY(34px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes timelineReveal {
  from {
    opacity: 0.42;
    transform: translateY(34px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes portraitParallax {
  from {
    transform: scale(1.08) translateY(24px);
  }
  to {
    transform: scale(1.03) translateY(-18px);
  }
}

.step {
  background: var(--ink);
  padding: 26px;
  min-height: 220px;
}

.step span {
  color: var(--green-2);
  font-weight: 800;
  font-size: 15px;
}

.step h3 {
  margin-top: 22px;
  font-size: 24px;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  margin-top: 42px;
}

.calc-panel,
.result-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 26px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 48px;
  padding: 0 14px;
  outline: none;
  background: #fbfdfc;
}

.field textarea {
  padding-top: 12px;
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(28, 104, 102, 0.1);
}

.phone-field {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.phone-field input {
  margin: 0;
}

.phone-field input[name="phonePrefix"] {
  text-align: center;
  font-weight: 700;
  padding: 0 10px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-panel button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-steps-card {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-alt {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.contact-alt a {
  color: var(--ink);
  font-weight: 600;
}

.contact-steps-card > .btn {
  width: fit-content;
}

.form-alt-contact {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.form-alt-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-alt-contact a:not(.btn) {
  color: var(--ink);
  font-weight: 650;
}

.form-alt-contact .btn {
  width: fit-content;
  min-height: 38px;
  padding: 10px 16px;
}

.mini-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-step-list {
  display: grid;
  gap: 0;
  margin-top: 6px;
}

.contact-step-list article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 0 0 28px;
}

.contact-step-list article:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.contact-step-list article > strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 14px;
}

.contact-step-list article:nth-of-type(3) > strong {
  background: var(--green);
}

.contact-step-list article:nth-of-type(4) > strong {
  background: #f0f1ec;
  color: var(--ink);
}

.contact-step-list h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 500;
}

.contact-step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.contact-review-pill {
  width: fit-content;
  border-radius: 8px;
  padding: 11px 14px;
  background: rgba(28, 104, 102, 0.1);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease;
}

.contact-review-pill:hover {
  transform: translateY(-2px);
  background: rgba(28, 104, 102, 0.14);
}

.contact-review-pill span {
  color: #175654;
  font-weight: 500;
}

.range {
  accent-color: var(--green);
}

.result-hero {
  padding: 28px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
}

.result-hero span {
  color: rgba(255, 255, 255, 0.68);
}

.result-hero strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.result-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--soft);
}

.result-item span {
  color: var(--muted);
  font-size: 13px;
}

.result-item strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.viability {
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(28, 104, 102, 0.08);
  color: #174f4d;
  line-height: 1.55;
}

.page-hero {
  padding: 88px 22px 58px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

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

.page-hero-with-visual .page-hero-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.page-hero-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(16, 22, 22, 0.08);
}

.page-hero-visual .service-widget {
  min-height: 360px;
  border-left: 0;
}

.page-hero h1 {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1.34;
}

.display-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 500;
  line-height: 1.02;
}

.contact-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(28, 104, 102, 0.36), transparent 34%),
    linear-gradient(180deg, #050807 0%, #0a0f0e 100%);
}

.contact-hero .page-hero-inner {
  overflow: visible;
}

.contact-hero .page-hero-copy h1 {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1.34;
}

.contact-hero .display-title {
  color: #ffffff;
}

.contact-hero .lead {
  color: rgba(255, 255, 255, 0.64);
}

.contact-phone-stage {
  position: relative;
  min-height: 650px;
  border: 0;
  overflow: visible;
  box-shadow: none;
}

.contact-phone-stage::before {
  content: "";
  position: absolute;
  inset: 88px -22px -54px 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.contact-phone {
  position: absolute;
  top: 18px;
  left: 60%;
  width: min(390px, 78vw);
  min-height: 690px;
  padding: 16px;
  border: 10px solid #102b35;
  border-radius: 44px;
  background: #102b35;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%) rotate(12deg);
  transform-origin: center bottom;
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 92px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: #101616;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 660px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(233, 244, 241, 0.96), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 44px 18px 14px;
  background: #f7faf9;
  border-bottom: 1px solid rgba(214, 225, 222, 0.8);
}

.wa-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.wa-header strong,
.wa-header small {
  display: block;
}

.wa-header strong {
  font-size: 14px;
}

.wa-header small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.wa-chat {
  display: grid;
  gap: 10px;
  padding: 18px 14px 22px;
}

.bubble {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  color: #1c2524;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(16, 22, 22, 0.08);
}

.bubble strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bubble.client {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: #dff3ee;
}

.bubble.hub {
  justify-self: start;
  border-bottom-left-radius: 4px;
  background: #ffffff;
}

.content-layout {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  gap: 32px;
}

.post-layout {
  width: min(860px, calc(100% - 44px));
  gap: 0;
}

.post-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(213, 224, 222, 0.72);
}

.post-section:first-child {
  padding-top: 0;
}

.post-section h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.015em;
}

.post-section p {
  max-width: 760px;
  margin: 0 0 12px;
}

.post-section p:last-child,
.post-section ul:last-child,
.post-section ol:last-child {
  margin-bottom: 0;
}

.post-section ul,
.post-section ol {
  max-width: 760px;
  margin: 8px 0 0;
}

.post-links {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f7faf9;
}

.post-faq-block {
  padding-top: 42px;
  padding-bottom: 42px;
}

.post-faq-block h2 {
  max-width: none;
  margin: 0 auto 22px;
  text-align: center;
  color: rgba(16, 22, 22, 0.68);
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 560;
}

.post-faq-block .faq-grid {
  max-width: 920px;
  margin: 0 auto;
}

.content-layout h2 {
  font-size: 34px;
}

.content-layout p,
.content-layout li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.content-layout ul,
.content-layout ol {
  margin: -12px 0 6px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.service-faq-section {
  padding-top: 40px;
  background: #ffffff;
}

.service-final-cta {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto 32px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}

.service-final-cta span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-final-cta strong {
  display: block;
  max-width: 640px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.blog-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card .tag {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 24px;
  margin-top: 40px;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 22px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav.open {
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open .nav-dropdown {
    display: flex;
    width: 100%;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav.open .nav-dropdown-trigger::after {
    display: none;
  }

  .nav.open .nav-submenu {
    position: static;
    width: 100%;
    padding: 6px;
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(32, 113, 109, 0.06);
  }

  .service-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-with-visual .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-phone-stage {
    min-height: 650px;
  }

  .contact-phone {
    top: 28px;
    left: 50%;
    width: min(350px, 82vw);
    min-height: 640px;
    transform: translateX(-50%) rotate(7deg);
  }

  .phone-screen {
    min-height: 610px;
  }

  .services-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .services-focus {
    min-height: 360px;
  }

  .services-focus::before {
    inset: 64px 30px;
  }

  .services-focus-item-1 { transform: translate(-50%, -50%) translate(-104px, 92px); }
  .services-focus-item-2 { transform: translate(-50%, -50%) translate(-112px, -48px); }
  .services-focus-item-3 { transform: translate(-50%, -50%) translate(-4px, -104px); }
  .services-focus-item-4 { transform: translate(-50%, -50%) translate(104px, -50px); }
  .services-focus-item-5 { transform: translate(-50%, -50%) translate(96px, 86px); }

  .page-hero-visual .service-widget {
    min-height: auto;
  }

  .split-panel {
    grid-template-columns: 1fr;
  }

  .service-widget {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-inner,
  .calculator,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 640px;
  }

  .mortgage-report-card {
    left: 40px;
    right: auto;
  }

  .service-grid,
  .service-bento,
  .strategy-grid,
  .strategy-options,
  .difference-grid,
  .about-system,
  .blog-grid,
  .steps,
  .about-grid,
  .reviews-strip,
  .reviews-header {
    grid-template-columns: 1fr;
  }

  .difference-main {
    grid-template-columns: 1fr;
  }

  .portrait-stage {
    min-height: 520px;
  }

  .strategy-map-final {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .route-line {
    display: block;
  }

  .mortgage-rail {
    justify-content: center;
    gap: 0;
    padding: 26px 0 42px;
    --card-w: clamp(86px, 12.8vw, 112px);
    --overlap: clamp(-10px, -1vw, -6px);
    transform: scale(0.82);
    transform-origin: center top;
    margin-bottom: -64px;
  }

  .mortgage-slide {
    min-height: 330px;
    padding: 20px;
  }

  .mortgage-slide h3 {
    font-size: clamp(18px, 2.6vw, 24px);
  }

  .google-review-wall {
    grid-template-columns: 1fr;
  }

  .route-step h3 {
    margin-top: 42px;
  }

  .strategy-note {
    grid-template-columns: 1fr;
  }

  .bank-spain-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bank-logo-text {
    text-align: left;
  }

  .bank-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 166px;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-switch,
  .hero-proof,
  .strategy-grid,
  .strategy-options,
  .strategy-map-final,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .about-system {
    grid-template-columns: 1fr;
  }

  .route-line {
    display: block;
    left: 46px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 24px;
    height: auto;
  }

  .route-line::before {
    top: 0;
    bottom: 0;
    left: 11px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(186, 201, 199, 0.2), rgba(186, 201, 199, 0.92), rgba(186, 201, 199, 0.2));
  }

  .route-line::after {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 12px;
    height: auto;
    background:
      radial-gradient(circle at 50% 0, rgba(28, 104, 102, 0.0) 0 15px, rgba(28, 104, 102, 0.62) 16px 20px, rgba(28, 104, 102, 0.0) 21px),
      linear-gradient(180deg, transparent, rgba(28, 104, 102, 0.72), transparent);
    background-size: 12px 150px, 12px 100%;
    animation-name: routeSnakeVertical;
  }

  .mortgage-rail {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mortgage-slide,
  .mortgage-slide:hover,
  .mortgage-rail:hover .mortgage-slide:not(:hover) {
    min-height: 300px;
  }

  .timeline-process {
    grid-template-columns: 1fr;
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .timeline-spine,
  .timeline-step::after {
    display: none;
  }

  .timeline-step,
  .timeline-step:nth-child(2),
  .timeline-step:nth-child(3),
  .timeline-step:nth-child(4),
  .timeline-step:nth-child(5),
  .timeline-step:nth-child(6),
  .timeline-step:nth-child(7),
  .timeline-step:nth-child(8) {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-column: 1;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .difference-main {
    min-height: 0;
    padding: 0;
  }

  .portrait-stage {
    min-height: 440px;
  }

  .bank-spain-card {
    padding: 26px;
  }

  .mortgage-report-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 18px;
    border-radius: 22px;
    transform: rotate(0deg);
    animation: heroCardIn 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms both;
  }

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

  .floating-read,
  .floating-ready {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: 0;
  }

  .floating-tile {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0;
  }

  .section {
    padding: 70px 16px;
  }

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

@media (min-width: 621px) and (max-width: 980px) {
  .route-line {
    display: block !important;
  }
}

.mortgage-types-section .mortgage-rail .mortgage-slide {
  transform: translateX(var(--dock-shift, 0px)) translateY(var(--base-y, 0px)) translateY(var(--dock-lift, 0px)) rotate(var(--r, 0deg)) scale(var(--dock-scale, 1));
}

.mortgage-types-section .mortgage-rail:hover .mortgage-slide {
  transform: translateX(var(--dock-shift, 0px)) translateY(var(--dock-lift, 0px)) rotate(0deg) scale(var(--dock-scale, 1));
}

@media (max-width: 620px) {
  .mortgage-types-section .mortgage-rail .mortgage-slide,
  .mortgage-types-section .mortgage-rail:hover .mortgage-slide {
    transform: none;
  }
}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .site-header {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
  }

  .nav {
    min-height: 62px;
    padding: 8px 14px;
    gap: 8px;
  }

  .brand img {
    width: 142px;
  }

  .mobile-toggle {
    width: auto;
    height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: 14px;
  }

  .mobile-whatsapp {
    order: 2;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--green);
    font-size: 14px;
    font-weight: 700;
  }

  .nav .mobile-toggle {
    order: 3;
  }

  .nav.open {
    gap: 10px;
    align-items: center;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    gap: 8px;
  }

  .nav.open .nav-actions .btn,
  .nav.open .nav-links a,
  .nav.open .nav-dropdown-trigger {
    width: 100%;
    justify-content: center;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
  }

  .hero {
    overflow: visible;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 36px 0 46px;
    gap: 30px;
  }

  .hero-pill {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .display-title,
  .section-title .display-title,
  .page-hero .display-title,
  .home-hero .display-title {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.03;
    letter-spacing: 0;
  }

  .home-hero h1,
  .page-hero h1,
  .section-title h2 {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.36;
  }

  .section-title p,
  .page-hero .lead,
  .hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-switch,
  .hero-actions,
  .page-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .page-actions .btn,
  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-proof {
    gap: 10px;
  }

  .metric {
    padding: 14px 0 0;
  }

  .hero-visual {
    min-height: 0;
    display: grid;
    gap: 0;
  }

  .mortgage-report-card,
  .page-hero-visual,
  .service-widget,
  .legal-card,
  .calc-panel,
  .result-panel,
  .contact-panel {
    border-radius: 18px;
  }

  .mortgage-report-card {
    width: 100%;
    padding: 16px;
    box-shadow: 0 18px 46px rgba(16, 22, 22, 0.08);
  }

  .drop-zone {
    min-height: 90px;
  }

  .file-badge {
    width: min(240px, 72vw);
    padding: 14px;
  }

  .analysis-box,
  .report-kpis,
  .format-bars {
    margin-top: 12px;
  }

  .report-kpis {
    gap: 8px;
  }

  .report-kpis div {
    padding: 12px 10px;
  }

  .report-kpis strong {
    font-size: 20px;
  }

  .floating-tile {
    box-shadow: none;
  }

  .section {
    padding: 58px 14px;
  }

  .section-title {
    text-align: left;
  }

  .section-title .display-title,
  .section-title h2,
  .section-title p {
    margin-left: 0;
    margin-right: 0;
  }

  .about-live-card,
  .strategy-intro,
  .strategy-note,
  .legal-card {
    padding: 20px;
  }

  .about-live-card h3,
  .difference-section .display-title,
  .process-lab .display-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .difference-section .difference-grid,
  .difference-main,
  .contact-grid,
  .calculator {
    grid-template-columns: 1fr;
  }

  .difference-main {
    gap: 14px;
  }

  .portrait-stage {
    min-height: 360px;
    border-radius: 18px;
  }

  .portrait-stage img {
    max-height: 360px;
  }

  .strategy-map-final {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .route-line {
    display: none;
  }

  .route-step {
    min-height: auto;
    padding: 20px;
  }

  .route-step-mark span,
  .route-step-mark i {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .route-step-mark svg {
    width: 25px;
    height: 25px;
  }

  .route-step h3 {
    margin-top: 24px;
    font-size: 24px;
  }

  .services-hero .page-hero-inner,
  .page-hero-inner,
  .page-hero-with-visual .page-hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .page-hero {
    padding: 54px 0 42px;
  }

  .services-focus {
    min-height: 330px;
    transform: scale(0.92);
    transform-origin: center;
    margin: -8px 0 -18px;
  }

  .services-focus-center {
    width: 116px;
    height: 116px;
  }

  .services-focus-center img {
    width: 60px;
    height: 60px;
  }

  .services-focus-item {
    width: 84px;
    height: 84px;
    padding: 9px;
  }

  .services-focus-item span {
    font-size: 10px;
  }

  .mortgage-rail {
    display: grid;
    grid-template-columns: 1fr;
    transform: none;
    margin-bottom: 0;
    padding: 18px 0 0;
  }

  .mortgage-slide,
  .mortgage-slide:hover,
  .mortgage-rail:hover .mortgage-slide:not(:hover) {
    width: 100%;
    min-height: auto;
    transform: none !important;
  }

  .service-widget {
    padding: 18px;
  }

  .split-panel {
    border-radius: 18px;
  }

  .widget-card {
    padding: 14px;
  }

  .blog-grid,
  .google-review-wall {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    margin-top: 28px;
    gap: 14px;
  }

  .contact-panel {
    padding: 20px;
    background: #ffffff;
    box-shadow: none;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    translate: none !important;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }

  .field {
    margin-bottom: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    font-size: 16px;
    background: #ffffff;
  }

  .checkbox {
    font-size: 12px;
  }

  .form-alt-contact {
    justify-items: stretch;
  }

  .form-alt-contact .btn {
    width: 100%;
  }

  .contact-step-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding-bottom: 22px;
  }

  .contact-step-list article > strong {
    width: 32px;
    height: 32px;
  }

  .contact-review-pill {
    width: 100%;
    text-align: center;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
  }

  .apple-scroll-fx.contact-panel,
  .contact-panel.apple-scroll-fx {
    opacity: 1 !important;
    transform: none !important;
  }
}

.contact-steps-card,
.contact-steps-card.apple-scroll-fx {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  translate: none !important;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 760px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero .hero-copy {
    order: 1;
  }

  .home-hero .hero-pill,
  .home-hero .hero-copy > .eyebrow {
    display: none;
  }

  .home-hero .hero-visual {
    order: 2;
  }

  .home-hero .hero-strategy-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(16, 22, 22, 0.08);
    overflow: hidden;
  }

  .home-hero .strategy-dashboard-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    padding: 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    animation: none;
    backdrop-filter: none;
  }

  .home-hero .strategy-dashboard-card.is-changing {
    transform: none;
    box-shadow: none;
  }

  .home-hero .strategy-dashboard-head img {
    width: 112px;
  }

  .home-hero .strategy-dashboard-head strong {
    padding: 8px 10px;
    font-size: 9px;
  }

  .home-hero .strategy-profile-card {
    min-height: 104px;
    padding: 16px;
    border-radius: 18px;
  }

  .home-hero .strategy-profile-card strong {
    font-size: 22px;
  }

  .home-hero .strategy-mini-chart {
    width: 70px;
    height: 56px;
  }

  .home-hero .strategy-summary-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .strategy-summary-grid div {
    min-height: 70px;
  }

  .home-hero .strategy-summary-grid strong {
    font-size: 21px;
  }

  .home-hero .strategy-offers {
    grid-template-columns: 1fr;
  }

  .home-hero .strategy-offer {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 12px;
  }

  .home-hero .strategy-offer strong {
    margin-top: 0;
  }

  .home-hero .strategy-offer small {
    grid-column: 1 / -1;
  }

  .home-hero .strategy-saving-card {
    display: block;
  }

  .home-hero .strategy-saving-card small {
    display: block;
    max-width: none;
    margin-top: 10px;
  }

  .home-hero .dashboard-floating-note {
    display: none;
  }

  .home-hero .hero-report {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(16, 22, 22, 0.08);
    overflow: hidden;
  }

  .home-hero .mortgage-report-card {
    grid-column: 1 / -1;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .home-hero .file-badge {
    margin-left: 0;
  }

  .home-hero .floating-tile {
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    padding: 16px;
    box-shadow: none;
  }

  .home-hero .floating-read {
    border-right: 1px solid var(--line);
  }

  .home-hero .floating-ready {
    right: auto;
    bottom: auto;
  }

  .home-hero .hero-copy .hero-switch,
  .home-hero .hero-copy .hero-proof {
    display: none;
  }

  .home-hero .hero-proof-mobile {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
  }

  .home-hero .hero-proof-mobile .metric {
    min-height: 82px;
    padding: 15px 12px 14px;
    border-top: 0;
    border-right: 1px solid var(--line);
  }

  .home-hero .hero-proof-mobile .metric:last-child {
    border-right: 0;
  }

  .home-hero .hero-proof-mobile .metric strong {
    font-size: 22px;
    line-height: 1;
  }

  .home-hero .hero-proof-mobile .metric span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.22;
  }

  .home-hero .floating-tile strong {
    font-size: 22px;
  }

  .home-hero .display-title {
    font-size: clamp(36px, 10.2vw, 46px);
  }

  .home-hero h1 {
    font-size: 17px;
  }

  .process-lab .section-title {
    text-align: left;
  }

  .timeline-process {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    margin-top: 34px;
    padding: 4px 0 4px;
  }

  .timeline-spine {
    display: block;
    position: absolute;
    left: 24px;
    top: 18px;
    bottom: 18px;
    width: 4px;
    transform: none;
    background-image: linear-gradient(180deg, rgba(28, 104, 102, 0.2), rgba(28, 104, 102, 0.72), rgba(28, 104, 102, 0.2));
    background-size: 4px 100%;
    border-radius: 999px;
    opacity: 1;
  }

  .timeline-step,
  .timeline-step:nth-child(2),
  .timeline-step:nth-child(3),
  .timeline-step:nth-child(4),
  .timeline-step:nth-child(5),
  .timeline-step:nth-child(6),
  .timeline-step:nth-child(7),
  .timeline-step:nth-child(8) {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
    align-items: start;
    min-height: 0;
    padding: 0 0 26px;
    animation: none;
  }

  .timeline-step span {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 17px;
    box-shadow: 0 12px 34px rgba(28, 104, 102, 0.22);
  }

  .timeline-step h3,
  .timeline-step p,
  .timeline-step:nth-of-type(even) h3,
  .timeline-step:nth-of-type(even) p {
    grid-column: 2;
    justify-self: start;
    width: 100%;
    text-align: left;
  }

  .timeline-step h3 {
    margin-top: 2px;
    font-size: 20px;
    line-height: 1.15;
  }

  .timeline-step p {
    font-size: 15px;
    line-height: 1.48;
  }

  .strategy-map-final {
    position: relative;
    padding-left: 0;
    gap: 14px;
  }

  .strategy-map-final .route-line {
    display: block;
    left: 24px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 4px;
    height: auto;
    z-index: 0;
  }

  .strategy-map-final .route-line::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(28, 104, 102, 0.18), rgba(28, 104, 102, 0.58), rgba(28, 104, 102, 0.18));
  }

  .strategy-map-final .route-line::after {
    left: -3px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: auto;
    background:
      radial-gradient(circle at 50% 0, rgba(28, 104, 102, 0) 0 18px, rgba(28, 104, 102, 0.7) 19px 23px, rgba(28, 104, 102, 0) 24px),
      linear-gradient(180deg, transparent, rgba(28, 104, 102, 0.34), transparent);
    background-size: 10px 150px, 10px 100%;
    animation: none;
  }

  .route-step {
    margin-left: 34px;
    animation: none !important;
    transform: none !important;
  }

  .mortgage-types-section .mortgage-rail {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 16px 2px 20px;
    margin: 0 -14px;
    transform: none;
  }

  .mortgage-types-section .mortgage-rail::-webkit-scrollbar {
    display: none;
  }

  .mortgage-types-section .mortgage-slide,
  .mortgage-types-section .mortgage-slide:hover,
  .mortgage-types-section .mortgage-rail:hover .mortgage-slide:not(:hover) {
    flex: 0 0 min(74vw, 300px);
    width: auto;
    min-height: 252px;
    padding: 22px;
    scroll-snap-align: start;
    transform: none !important;
    margin: 0;
    border-radius: 22px;
  }

  .mortgage-types-section .mortgage-slide span {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .mortgage-types-section .mortgage-slide h3 {
    margin-top: 38px;
    font-size: 22px;
    line-height: 1.08;
  }

  .mortgage-types-section .mortgage-slide p {
    font-size: 14px;
    line-height: 1.48;
  }

  .mortgage-types-section .slide-meter {
    margin-top: auto;
  }

  .mortgage-types-section .mortgage-slide:first-child {
    margin-left: 14px;
  }

  .mortgage-types-section .mortgage-slide:last-child {
    margin-right: 14px;
  }
}

@media (max-width: 760px) {
  .nav.open {
    position: fixed;
    inset: 0;
    z-index: 100;
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    margin: 0;
    padding: 74px 30px 34px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background:
      radial-gradient(circle at 80% 0%, rgba(28, 104, 102, 0.2), transparent 32%),
      #111414;
    color: #f5f7f6;
    overflow-y: auto;
    animation: mobileMenuDrop 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .nav.open .brand,
  .nav.open .mobile-whatsapp {
    display: none;
  }

  .nav.open .mobile-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 101;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0;
  }

  .nav.open .mobile-toggle::before {
    content: "×";
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
    transform: translateY(-2px);
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav.open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.open .nav-links > a,
  .nav.open .nav-dropdown,
  .nav.open .nav-actions .btn {
    opacity: 0;
    transform: translateY(14px);
    animation: mobileMenuItemIn 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav.open .nav-dropdown { animation-delay: 70ms; }
  .nav.open .nav-links > a:nth-of-type(1) { animation-delay: 120ms; }
  .nav.open .nav-links > a:nth-of-type(2) { animation-delay: 170ms; }
  .nav.open .nav-links > a:nth-of-type(3) { animation-delay: 220ms; }
  .nav.open .nav-actions .btn:nth-child(1) { animation-delay: 300ms; }
  .nav.open .nav-actions .btn:nth-child(2) { animation-delay: 350ms; }

  .nav.open .nav-actions {
    margin-top: auto;
    padding-top: 34px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav.open .nav-links > a,
  .nav.open .nav-dropdown-trigger {
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    color: #f4f5f5;
    font-size: clamp(30px, 8.8vw, 43px);
    line-height: 1.08;
    font-weight: 680;
    letter-spacing: -0.018em;
  }

  .nav.open .nav-dropdown {
    width: 100%;
    align-items: stretch;
    gap: 14px;
  }

  .nav.open .nav-submenu {
    display: grid;
    gap: 4px;
    width: 100%;
    margin: 2px 0 10px;
    padding: 0 0 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav.open .nav-submenu a {
    width: 100%;
    padding: 7px 0;
    border-radius: 0;
    color: rgba(245, 247, 246, 0.62);
    font-size: 20px;
    font-weight: 650;
    line-height: 1.2;
  }

  .nav.open .nav-submenu a:hover {
    background: transparent;
    color: white;
  }

  .nav.open .nav-actions .btn {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 750;
  }

  .nav.open .nav-actions .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .nav.open .nav-actions .btn-whatsapp {
    background: var(--green);
  }

  .content-layout {
    width: min(100% - 34px, 980px);
    padding: 52px 0;
    gap: 24px;
  }

  .content-layout h2 {
    font-size: 26px;
    line-height: 1.08;
  }

  .content-layout p,
  .content-layout li {
    font-size: 16px;
    line-height: 1.64;
  }

  .blog-hero {
    padding-top: 82px;
    padding-bottom: 36px;
  }

  .blog-hero .display-title {
    font-size: clamp(44px, 14vw, 62px);
  }

  .blog-editorial-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-editorial-grid .blog-card {
    min-height: 0;
    border-radius: 24px;
  }

  .blog-card-visual {
    min-height: 230px;
  }

  .blog-editorial-grid .blog-card .tag,
  .blog-editorial-grid .blog-card h3,
  .blog-editorial-grid .blog-card .blog-date {
    margin-left: 22px;
    margin-right: 22px;
  }

  .blog-editorial-grid .blog-card .tag {
    margin-top: 22px;
    font-size: 16px;
  }

  .blog-editorial-grid .blog-card h3 {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 22px;
  }

  .blog-date {
    margin-bottom: 24px;
  }

  .post-hero {
    padding-top: 74px;
    padding-bottom: 28px;
  }

  .post-hero .page-hero-inner,
  .post-layout {
    width: min(100% - 52px, 860px);
    margin-left: auto;
    margin-right: auto;
  }

  .post-hero h1 {
    color: var(--ink);
    font-size: clamp(31px, 8.4vw, 42px);
    line-height: 1.07;
    letter-spacing: -0.026em;
    font-weight: 650;
  }

  .post-hero .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.56;
    color: rgba(16, 22, 22, 0.62);
  }

  .post-meta {
    font-size: 13px;
    line-height: 1.4;
  }

  .post-section {
    padding: 22px 0;
  }

  .post-section h2 {
    margin-bottom: 10px;
  }

  .post-links {
    padding: 22px;
    border-radius: 22px;
  }
}

@keyframes mobileMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-26px);
    filter: blur(8px);
    clip-path: inset(0 0 100% 0 round 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 0);
  }
}

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

@media (max-width: 760px) {
  .strategy-map-section,
  .strategy-map-section *,
  .strategy-map-section .apple-scroll-fx,
  .strategy-map-section .section-title,
  .strategy-map-section .strategy-intro,
  .strategy-map-section .strategy-note,
  .strategy-map-section .route-step {
    filter: none !important;
    translate: none !important;
    backface-visibility: visible;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }

  .strategy-map-section .section-title,
  .strategy-map-section .section-title.apple-scroll-fx,
  .strategy-map-section .strategy-intro.apple-scroll-fx,
  .strategy-map-section .strategy-note.apple-scroll-fx,
  .strategy-map-section .route-step.apple-scroll-fx {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .strategy-map-section .kinetic-word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .strategy-map-section .strategy-map-final {
    gap: 14px;
  }

  .strategy-map-section .route-line::after,
  .strategy-map-section .route-step {
    animation: none !important;
  }

  .strategy-map-section .route-step {
    transform: none !important;
  }

  .personal-difference-section .difference-stack {
    gap: 12px;
  }

  .personal-difference-section .difference-card {
    padding: 20px;
  }

  .personal-difference-section .difference-card + .difference-card {
    margin-top: 0;
  }
}
