:root {
  --ink: #172126;
  --ink-soft: #28353b;
  --body: #405057;
  --muted: #5c6770;
  --subtle: #8d99a8;
  --rule: #c5d0dd;
  --surface: #e9f2f8;
  --canvas: #f2f7fb;
  --paper: #ffffff;
  --paper-soft: #f6fafc;
  --band: #dce6f0;
  --band-blue: #e5edf3;
  --white: #ffffff;
  --blue: #2457a6;
  --blue-dim: #e5edf9;
  --blue-glow: rgba(36, 87, 166, 0.16);
  --warm: #7595b3;
  --warm-dim: #e8eff6;
  --green-bg: #075e54;
  --green-dark: #054a42;
  --radius: 8px;
  --shadow-soft: 0 16px 34px rgba(10, 15, 30, 0.08);
  --shadow-card: 0 18px 42px rgba(10, 15, 30, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--body);
  background: var(--canvas);
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(36, 87, 166, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 117, 42, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(242, 247, 251, 0.94) 0%, rgba(242, 247, 251, 0.94) 38%, rgba(229, 237, 243, 0.92) 38%, rgba(229, 237, 243, 0.92) 66%, rgba(219, 230, 239, 0.96) 66%, rgba(219, 230, 239, 0.96) 100%);
}

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

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

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

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

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

.container {
  width: min(1120px, calc(100% - clamp(28px, 6vw, 80px)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 251, 253, 0.96);
  border-bottom: 1px solid rgba(197, 208, 219, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(23, 33, 38, 0.56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms var(--ease), visibility 220ms var(--ease);
}

.header-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding-block: 12px 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 0.85rem;
  font-family: ui-serif, Georgia, Cambria, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 176px;
  height: auto;
  max-height: 44px;
}

.main-nav {
  width: 100%;
  min-width: 0;
  border-top: 1px solid rgba(197, 208, 219, 0.78);
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 42px;
  padding-inline: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 220ms var(--ease);
}

.focus-section {
  background: rgba(247, 251, 255, 0.86);
}

.feature-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 30px);
}

.feature-route {
  min-width: 0;
}

.feature-route a {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
  will-change: transform;
}

.feature-route a:hover,
.feature-route a:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(36, 87, 166, 0.38);
  box-shadow: var(--shadow-card);
}

.route-visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: #dfe9f2;
}

.route-visual::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.54);
  border-radius: var(--radius);
}

.route-visual-blue {
  background:
    linear-gradient(135deg, rgba(23, 33, 38, 0.94), rgba(36, 87, 166, 0.86)),
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.route-line,
.route-node,
.doc-sheet,
.doc-mark,
.team-avatar,
.team-board {
  position: absolute;
  display: block;
}

.route-line {
  left: 42px;
  right: 72px;
  top: 76px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}

.route-line-long {
  top: 116px;
  right: 38px;
  background: rgba(255,255,255,0.34);
}

.route-node {
  right: 42px;
  top: 62px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(10,15,30,0.22);
}

.route-node-alt {
  right: 92px;
  top: 102px;
  width: 28px;
  height: 28px;
  opacity: 0.86;
}

.route-visual-paper {
  background:
    linear-gradient(145deg, #f7fbff 0%, #e5edf3 100%);
}

.doc-sheet {
  left: 44px;
  top: 34px;
  width: 132px;
  height: 124px;
  border-radius: 7px;
  background:
    linear-gradient(#2457a6 0 10px, transparent 10px),
    linear-gradient(#d2dbe6 0 0) 20px 36px / 90px 8px no-repeat,
    linear-gradient(#d2dbe6 0 0) 20px 58px / 72px 8px no-repeat,
    linear-gradient(#d2dbe6 0 0) 20px 80px / 94px 8px no-repeat,
    #ffffff;
  border: 1px solid rgba(197, 208, 219, 0.96);
  box-shadow: 0 18px 42px rgba(10,15,30,0.14);
}

.doc-sheet-small {
  left: auto;
  right: 42px;
  top: 56px;
  width: 104px;
  height: 88px;
  opacity: 0.92;
}

.doc-mark {
  right: 70px;
  bottom: 34px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(36, 87, 166, 0.28);
}

.doc-mark::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 10px;
  width: 17px;
  height: 24px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(38deg);
}

.route-visual-team {
  background:
    linear-gradient(135deg, #edf4f8 0%, #d7e4ed 58%, #cbd9e4 100%);
}

.team-avatar {
  left: 42px;
  top: 46px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #172126;
  box-shadow: 0 16px 34px rgba(10,15,30,0.16);
}

.team-avatar::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 62px;
  width: 70px;
  height: 42px;
  border-radius: 36px 36px 12px 12px;
  background: #ffffff;
  border: 1px solid rgba(197, 208, 219, 0.9);
}

.team-avatar-two {
  left: 124px;
  top: 64px;
  width: 42px;
  height: 42px;
  background: var(--blue);
}

.team-avatar-three {
  left: 196px;
  top: 50px;
  width: 46px;
  height: 46px;
  background: #7595b3;
}

.team-board {
  right: 28px;
  bottom: 26px;
  width: 148px;
  height: 74px;
  border-radius: var(--radius);
  background:
    linear-gradient(#2457a6 0 9px, transparent 9px),
    linear-gradient(90deg, rgba(36,87,166,0.18) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 33% 100%;
  border: 1px solid rgba(197, 208, 219, 0.94);
  box-shadow: 0 18px 38px rgba(10,15,30,0.13);
}

.route-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(24px, 3vw, 32px);
}

.route-copy h3 {
  font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
}

.route-copy p {
  margin: 0;
  color: var(--muted);
}

.route-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 8px;
  padding-inline: 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.visual-guidance {
  background: rgba(229, 237, 243, 0.76);
}

.image-placement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.document-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.44fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.document-status-panel {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
}

.document-status-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
}

.document-status-panel p {
  margin: 0;
  color: var(--muted);
}

.document-status-panel p + p {
  margin-top: 12px;
}

.document-status-panel strong {
  color: var(--ink);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.document-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 38px rgba(10,15,30,0.08);
}

.document-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.doc-category,
.doc-access {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding-inline: 10px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.doc-category {
  background: var(--blue-dim);
  color: var(--blue);
}

.doc-access.public {
  background: #e8f5ee;
  color: #17603c;
}

.doc-access.reserved {
  background: #f2e9dc;
  color: #765423;
}

.document-card h3 {
  font-size: clamp(1.35rem, 0.8vw + 1rem, 1.75rem);
}

.document-card p,
.document-card dd {
  margin: 0;
  color: var(--muted);
}

.document-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-top: 4px;
}

.document-card dt {
  color: var(--ink);
  font-weight: 800;
}

.case-card,
.guide-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 16px 38px rgba(10,15,30,0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.case-card:hover,
.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 87, 166, 0.34);
  box-shadow: var(--shadow-card);
}

.case-card h3,
.guide-card h3 {
  font-size: clamp(1.45rem, 0.95vw + 1rem, 1.875rem);
}

.case-card p,
.guide-card p {
  margin: 0;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  margin: 0;
  color: var(--muted);
}

.compact-list strong {
  color: var(--ink);
}

.process-table {
  display: grid;
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-soft);
}

.process-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(197, 208, 219, 0.82);
}

.process-table div:last-child {
  border-bottom: 0;
}

.process-table strong {
  color: var(--ink);
}

.process-table span {
  color: var(--muted);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.nav-active {
  color: var(--ink);
}

.nav-link.nav-active {
  font-weight: 700;
}

.nav-link.nav-active::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(10,15,30,0.22);
  box-shadow: 0 12px 26px rgba(10,15,30,0.08);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }

.menu-toggle[aria-expanded='true'] .menu-toggle-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::before {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-90deg);
}

.section {
  padding-block: clamp(72px, 10vw, 132px);
  background: rgba(244, 249, 253, 0.78);
  border-block: 1px solid rgba(197, 208, 219, 0.5);
}

.section.tight {
  padding-block: clamp(48px, 7vw, 90px);
  background: rgba(241, 247, 252, 0.72);
}

.hero {
  padding-top: clamp(42px, 7vw, 82px);
  padding-bottom: clamp(50px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgba(242, 247, 252, 0.92) 0%, rgba(242, 247, 252, 0.92) 54%, rgba(229, 237, 243, 0.88) 54%, rgba(229, 237, 243, 0.88) 100%);
  border-bottom: 1px solid rgba(197, 208, 219, 0.72);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.hero-logo {
  width: clamp(240px, 45%, 620px);
  height: auto;
  margin: 0 auto clamp(24px, 4vw, 32px);
  object-fit: contain;
  display: block;
}

.hero-logo-wrapper {
  margin: clamp(10px, 3vw, 28px) auto;
  display: flex;
  justify-content: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--blue);
}

h1, h2, h3 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 400;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.25rem, 3.7vw + 0.9rem, 4.35rem);
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  font-size: clamp(1.85rem, 2.6vw + 0.8rem, 3.25rem);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.45rem, 1.1vw + 1rem, 2rem);
  letter-spacing: 0;
}

.lead {
  max-width: 710px;
  margin: clamp(20px, 3vw, 28px) 0 0;
  font-size: clamp(1.08rem, 0.5vw + 1rem, 1.22rem);
  color: var(--body);
}

.text-large {
  max-width: 760px;
  margin: clamp(18px, 2.5vw, 24px) 0 0;
  font-size: 1.125rem;
  color: var(--muted);
}

.page-hero {
  padding-block: clamp(54px, 8vw, 96px) clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(242, 248, 252, 0.94), rgba(229, 237, 243, 0.82));
  border-bottom: 1px solid rgba(197, 208, 219, 0.72);
}

.page-hero .lead {
  max-width: 780px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(10,15,30,0.18);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  box-shadow: 0 20px 44px rgba(10,15,30,0.25);
}

.btn.whatsapp {
  background: var(--green-bg);
  color: var(--white);
  box-shadow: 0 15px 32px rgba(37,211,102,0.28);
}

.btn.whatsapp:hover,
.btn.whatsapp:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 20px 44px rgba(37,211,102,0.34);
}

.btn.secondary {
  background: rgba(229, 237, 243, 0.78);
  color: var(--ink);
  border-color: var(--rule);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: var(--ink);
  box-shadow: 0 14px 32px rgba(10,15,30,0.08);
}

.icon-inline {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.hero-card,
.card,
.problem-card,
.service-card,
.info-card,
.contact-card {
  overflow: hidden;
  background: rgba(247, 251, 255, 0.94);
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.hero-card:hover,
.card:hover,
.problem-card:hover,
.service-card:hover,
.info-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 87, 166, 0.34);
  box-shadow: var(--shadow-card);
}

.hero-card {
  padding: clamp(26px, 4vw, 38px);
  color: rgba(255,255,255,0.82);
  background:
    linear-gradient(145deg, #172126, #26353b);
  border-color: rgba(255,255,255,0.08);
}

.hero-card h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2rem, 2.2vw + 0.85rem, 2.5rem);
}

.hero-card p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.76);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius);
  background: rgba(37,211,102,0.12);
  color: var(--green-bg);
  font-weight: 700;
  line-height: 1;
}

.claim-strip {
  padding-block: clamp(22px, 4vw, 36px);
  border-block: 1px solid rgba(197, 208, 219, 0.86);
  background: rgba(229, 237, 243, 0.78);
}

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

.claim {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 12px 26px rgba(10, 15, 30, 0.06);
}

.claim strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.claim span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.875rem;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.125rem;
}

.section-head.spaced {
  margin-top: 36px;
}

.section-head.flush {
  margin-top: 40px;
  margin-bottom: 0;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

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

.problem-card,
.service-card,
.info-card,
.contact-card {
  padding: clamp(24px, 3.2vw, 34px);
}

.problem-card .label,
.service-card .label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--blue-dim);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.problem-card h3,
.service-card h3,
.info-card h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 0.95vw + 1rem, 1.875rem);
}

.problem-card p,
.service-card p,
.info-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--warm-dim);
  font-size: 23px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 10vw, 126px);
  background:
    linear-gradient(145deg, #172126 0%, #26353b 62%, #35403a 100%);
  color: rgba(255,255,255,0.68);
}

.dark-section h1,
.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .eyebrow {
  color: #93c5fd;
}

.dark-section .section-head p,
.dark-section .lead,
.dark-section .text-large {
  color: rgba(255,255,255,0.66);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}

.method-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.method-card .number {
  display: block;
  margin-bottom: 18px;
  font-family: ui-serif, Georgia, Cambria, 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.38);
}

.method-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.method-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.profile-photo-frame {
  width: min(100%, 430px);
  aspect-ratio: 1100 / 1134;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(10,15,30,0.16);
}

.profile-photo-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: clamp(24px, 4vw, 34px);
}

.timeline-item {
  position: relative;
  padding: 0 0 0 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px var(--blue-dim);
}

.timeline-item h3 {
  margin-bottom: 5px;
  font-size: 1.75rem;
}

.timeline-item .meta {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.timeline-item p,
.timeline-item ul {
  margin: 0;
  color: var(--muted);
}

.timeline-item ul {
  padding-left: 19px;
}

.timeline-item li + li {
  margin-top: 4px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 30px);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(10,15,30,0.05);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.contact-intro {
  min-width: 0;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-line strong {
  color: var(--ink);
  min-width: 92px;
}

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

.contact-line a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--blue);
}

.contact-section {
  background: rgba(246, 250, 252, 0.86);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(30px, 6vw, 72px);
}

.lead-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(197, 208, 219, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field label,
.privacy-check {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-field label span {
  color: var(--muted);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--ink);
  padding: 13px 14px;
  line-height: 1.35;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.form-field select {
  appearance: auto;
  cursor: pointer;
}

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

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(36, 87, 166, 0.42);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-glow);
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.privacy-check span {
  min-width: 0;
}

.privacy-check a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: grid;
  gap: 12px;
  align-items: start;
}

.form-actions .btn {
  width: fit-content;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.final-cta {
  padding: clamp(36px, 5vw, 54px);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #172126 0%, #26353b 70%, #3a3127 100%);
  color: rgba(255,255,255,0.68);
}

.final-cta h2,
.final-cta h3 {
  color: var(--white);
}

.final-cta p {
  max-width: 760px;
  color: rgba(255,255,255,0.66);
}

.site-footer {
  background: #172126;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.footer-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 22px;
}

.footer-inner p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-whatsapp {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(37,211,102,0.38);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.1);
  background: var(--green-dark);
  box-shadow: 0 22px 52px rgba(37,211,102,0.46);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.site-header.menu-open ~ .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.86);
}

.legal-section {
  padding-block: clamp(56px, 8vw, 96px);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 3.4vw + 1rem, 4rem);
}

.legal-content h2 {
  margin-top: clamp(34px, 5vw, 52px);
  font-size: clamp(1.65rem, 1.6vw + 1rem, 2.35rem);
}

.legal-content p {
  max-width: 72ch;
  margin: 18px 0 0;
}

@media (max-width: 1240px) {
  .hero-grid,
  .about-grid,
  .contact-layout,
  .contact-form-grid,
  .document-hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .method-grid,
  .image-placement-grid,
  .document-grid,
  .feature-routes,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10,15,30,0.25);
}

@media (max-width: 1240px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
    align-content: center;
    gap: 18px;
    min-height: 72px;
    padding-block: 0;
    padding-top: env(safe-area-inset-top);
  }

  .brand {
    justify-self: start;
  }

  .brand-logo {
    max-width: 172px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 103;
  }

  .site-header.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav {
    --menu-width: min(300px, calc(100vw - 56px));
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 0;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    display: grid;
    align-content: start;
    grid-column: auto;
    justify-self: auto;
    padding: calc(82px + env(safe-area-inset-top)) 0 calc(18px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.98);
    border-top: 0;
    border-left: 0 solid var(--rule);
    box-shadow: -10px 0 28px rgba(10,15,30,0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms var(--ease), width 220ms var(--ease), padding 220ms var(--ease), border-width 220ms var(--ease), visibility 220ms var(--ease);
    z-index: 102;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.menu-open .main-nav {
    width: var(--menu-width);
    padding-inline: 18px max(18px, env(safe-area-inset-right));
    border-left-width: 1px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    align-content: start;
    gap: 6px;
    width: 100%;
    margin: 0;
    padding-top: 8px;
  }

  .nav-link {
    min-height: 48px;
    padding: 8px 12px;
    font-size: 16px;
    justify-content: flex-start;
    border-radius: 6px;
    transition: background-color 150ms var(--ease);
  }

  .nav-link:active,
  .nav-link:focus-visible {
    background-color: var(--surface);
  }

  .nav-link::after {
    bottom: 2px;
    right: auto;
    width: 42px;
  }
}

@media (max-width: 639px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section,
  .dark-section {
    padding-block: clamp(54px, 14vw, 82px);
  }

  .hero {
    padding-block: clamp(46px, 14vw, 74px) clamp(40px, 12vw, 68px);
  }

  body::before {
    opacity: 0.28;
    background-size: 34px 34px;
  }

  h1 {
    font-size: clamp(1.92rem, 10vw, 2.45rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.58rem, 7vw, 2.05rem);
    line-height: 1.12;
  }

  h3,
  .route-copy h3,
  .problem-card h3,
  .service-card h3,
  .info-card h3,
  .contact-card h3,
  .document-card h3,
  .case-card h3,
  .guide-card h3 {
    font-size: clamp(1.28rem, 5.5vw, 1.62rem);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .claim-grid,
  .method-grid,
  .feature-routes,
  .image-placement-grid,
  .document-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .process-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-route a {
    grid-template-rows: 170px 1fr;
  }

  .route-copy,
  .document-card,
  .problem-card,
  .service-card,
  .info-card,
  .contact-card,
  .lead-form,
  .document-status-panel {
    padding: 22px;
  }

  .actions {
    align-items: stretch;
  }

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

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .form-actions .btn {
    width: 100%;
  }

  .hero-card,
  .problem-card,
  .service-card,
  .info-card,
  .contact-card,
  .final-cta {
    border-radius: var(--radius);
  }

  .footer-inner {
    display: grid;
    justify-items: start;
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 639px) {
  .brand { font-size: 1.75rem; }
  .brand-logo { width: 132px; max-height: 40px; }
  .method-card .number { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
