:root {
  --green-950: #0b2c25;
  --green-900: #123c32;
  --green-800: #1c5647;
  --green-700: #28705d;
  --green-100: #e5efe9;
  --cream: #f7f4ec;
  --cream-deep: #eee8db;
  --white: #fffefa;
  --ink: #18342d;
  --muted: #60716b;
  --gold: #d9a441;
  --gold-soft: #f3ddaa;
  --coral: #c8785f;
  --line: rgba(20, 65, 54, 0.14);
  --shadow: 0 22px 60px rgba(16, 49, 41, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
  color: var(--green-950);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(15, 53, 44, 0.96);
  color: white;
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: inline-grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px 4px 14px 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: white;
}

.nav-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 18px;
}

.language-switch {
  gap: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
}

.language-switch button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 3px;
}

.language-switch button.active {
  color: var(--gold-soft);
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  padding: 15px 24px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.52);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 11px 18px;
  font-size: 12px;
}

.button-dark {
  background: var(--gold);
  color: var(--green-950);
}

.button-primary {
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(217, 164, 65, 0.22);
  color: var(--green-950);
}

.button-primary:hover {
  background: #e7b75a;
  box-shadow: 0 16px 36px rgba(217, 164, 65, 0.3);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button-outline {
  border-color: var(--green-700);
  color: var(--green-900);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(105, 159, 131, 0.22), transparent 32%),
    linear-gradient(135deg, #0d3028 0%, #174a3e 58%, #11372e 100%);
  color: white;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  content: "";
  opacity: 0.23;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.glow-one {
  top: -170px;
  right: -90px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow-two {
  right: 110px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(217, 164, 65, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 64px;
  padding-block: 72px 88px;
}

.eyebrow,
.kicker {
  margin: 0 0 19px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 8px;
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 600;
}

.hero-body {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

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

.whatsapp-dot {
  color: #69d496;
  font-size: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-top: 30px;
}

.trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 600;
}

.trust-row b {
  color: var(--gold-soft);
}

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

.hero-visual::before {
  position: absolute;
  top: 38px;
  right: 12px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(4, 24, 19, 0.28);
  color: var(--green-950);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-card strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 18px;
}

.card-translation {
  z-index: 3;
  top: 40px;
  right: 45px;
  width: 300px;
  transform: rotate(3deg);
}

.card-photo {
  z-index: 4;
  top: 183px;
  left: 8px;
  width: 250px;
  transform: rotate(-4deg);
}

.card-mexico {
  z-index: 2;
  right: 0;
  bottom: 72px;
  width: 290px;
  transform: rotate(2deg);
}

.status-dot {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
}

.mini-icon {
  display: grid;
  width: 48px;
  height: 56px;
  flex: 0 0 auto;
  align-content: center;
  gap: 6px;
  border-radius: 5px;
  background: var(--green-100);
  padding: 10px;
}

.mini-icon i {
  display: block;
  height: 3px;
  border-radius: 5px;
  background: var(--green-700);
  opacity: 0.65;
}

.mini-icon i:last-child {
  width: 55%;
}

.photo-frame {
  display: grid;
  width: 59px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border: 5px solid #e5d6bd;
  background: #d9eadf;
}

.photo-frame span {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #b97d64;
}

.photo-frame span::after {
  position: absolute;
  top: 23px;
  left: -8px;
  width: 42px;
  height: 22px;
  border-radius: 22px 22px 0 0;
  background: var(--green-700);
  content: "";
}

.mexico-mark {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #1f725c 0 33%, #f6f1e7 33% 66%, #bd4f42 66%);
  color: #133b32;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 1px white;
}

.delivery-path {
  position: absolute;
  right: 96px;
  bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.delivery-path b {
  color: var(--gold);
}

.visual-note {
  position: absolute;
  top: 150px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(12, 48, 39, 0.74);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  padding: 8px 13px;
}

.visual-note span:first-child {
  color: var(--gold);
}

.section {
  padding-block: 110px;
}

.section-heading {
  margin-bottom: 55px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.detail-copy h2,
.mexico-heading h2,
.request-copy h2,
.legal-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 54px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading > p,
.split-heading > p,
.centered-heading > p,
.mexico-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-overview {
  background: var(--cream);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.72);
  padding: 34px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  transform: translateY(-7px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-number {
  color: #9bab9f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-symbol {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 28px 0 26px;
  border-radius: 18px 6px 18px 6px;
  background: var(--green-100);
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.service-symbol > span {
  color: var(--gold);
  font-size: 18px;
}

.camera-symbol {
  position: relative;
}

.camera-symbol::before {
  position: absolute;
  width: 34px;
  height: 25px;
  border: 3px solid var(--green-700);
  border-radius: 6px;
  content: "";
}

.camera-symbol::after {
  position: absolute;
  top: 15px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.camera-symbol span {
  position: absolute;
  top: 15px;
  left: 19px;
  width: 12px;
  height: 5px;
  border-radius: 2px 2px 0 0;
  background: var(--green-700);
}

.mexico-symbol {
  background: linear-gradient(140deg, #dfece5, #fff8eb);
  color: #a3483f;
  font-family: var(--sans);
  font-size: 17px;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
}

.service-card p {
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.service-card > strong {
  color: var(--green-700);
  font-size: 13px;
}

.detail-section {
  overflow: hidden;
  background: #e5eee7;
  padding-block: 110px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 110px;
}

.detail-copy > p:not(.kicker):not(.price-note) {
  color: var(--muted);
  font-size: 17px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 600;
}

.check-list li > span:first-child {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-size: 11px;
}

.price-note {
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  padding: 14px 18px;
}

.price-note strong {
  color: var(--green-900);
}

.document-stack {
  position: relative;
  min-height: 430px;
}

.paper {
  position: absolute;
  display: flex;
  width: 290px;
  min-height: 375px;
  flex-direction: column;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(17, 54, 44, 0.18);
  padding: 38px 34px;
}

.paper-back {
  top: 10px;
  left: 5px;
  transform: rotate(-9deg);
}

.paper-front {
  top: 25px;
  right: 0;
  transform: rotate(5deg);
}

.paper b {
  color: var(--green-800);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.paper i {
  display: block;
  height: 5px;
  margin-top: 25px;
  border-radius: 20px;
  background: #dce3dd;
}

.paper i:nth-child(3) {
  width: 82%;
}

.paper i:nth-child(4) {
  width: 61%;
}

.paper span {
  align-self: flex-start;
  margin-top: auto;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--green-800);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 11px;
}

.paper em {
  margin: auto 0 22px;
  color: var(--green-700);
  font-family: var(--serif);
  font-size: 17px;
}

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

.centered-heading {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 660px;
  margin: 18px auto 0;
}

.pricing-grid {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 485px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  padding: 40px;
}

.price-card.featured {
  border-color: var(--gold);
  background: var(--green-900);
  box-shadow: var(--shadow);
  color: white;
}

.popular {
  position: absolute;
  top: -15px;
  right: 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-950);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  padding: 8px 13px;
  text-transform: uppercase;
}

.plan-label {
  margin: 0;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .plan-label {
  color: var(--gold-soft);
}

.price {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: 68px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price sup {
  position: relative;
  top: -25px;
  margin-right: 3px;
  font-family: var(--sans);
  font-size: 19px;
}

.price small {
  font-size: 30px;
}

.price + p {
  min-height: 49px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.featured .price + p {
  color: rgba(255, 255, 255, 0.64);
}

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

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.price-card li > span:first-child {
  color: var(--green-700);
  font-weight: 900;
}

.featured li > span:first-child {
  color: var(--gold);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.featured .button-primary {
  box-shadow: none;
}

.addons {
  max-width: 1040px;
  margin: 58px auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 27px 30px;
}

.addons h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 20px;
}

.addons > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.addons span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 2px solid var(--gold-soft);
  padding-left: 13px;
}

.addons b {
  color: var(--green-800);
}

.addons i {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.photo-guidance {
  display: grid;
  max-width: 1040px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 25px;
  margin: 30px auto 0;
  border-radius: 18px;
  background: #eef3ee;
  padding: 28px 30px;
}

.guidance-icon {
  display: grid;
  width: 75px;
  height: 86px;
  place-items: center;
  border: 7px solid white;
  background: #d8e8dd;
  box-shadow: 0 9px 24px rgba(22, 63, 52, 0.1);
}

.guidance-icon span {
  position: relative;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #b97960;
}

.guidance-icon span::after {
  position: absolute;
  top: 26px;
  left: -11px;
  width: 51px;
  height: 27px;
  border-radius: 26px 26px 0 0;
  background: var(--green-700);
  content: "";
}

.photo-guidance h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
}

.photo-guidance p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.mexico-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 59, 48, 0.99), rgba(21, 73, 60, 0.98)),
    var(--green-900);
  color: white;
  padding-block: 110px;
}

.mexico-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: end;
  gap: 80px;
}

.mexico-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.kicker-light {
  color: var(--gold-soft);
}

.mexico-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
}

.mexico-categories article {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 30px;
}

.category-icon {
  display: inline-grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
}

.mexico-categories h3 {
  margin: 21px 0 18px;
  font-family: var(--serif);
  font-size: 23px;
}

.mexico-categories ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mexico-categories li {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  padding-left: 17px;
}

.mexico-categories li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.delivery-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.delivery-banner div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}

.delivery-banner div > span {
  color: var(--gold);
  font-size: 20px;
}

.delivery-banner i {
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
}

.mexico-price {
  max-width: 850px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

.mexico-price strong {
  color: white;
}

.process-section {
  background: var(--cream);
}

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

.steps-grid::before {
  position: absolute;
  top: 26px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: var(--line);
  content: "";
}

.steps-grid article {
  position: relative;
  text-align: center;
}

.steps-grid article > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 53px;
  height: 53px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
}

.steps-grid h3 {
  margin: 24px 0 9px;
  font-family: var(--serif);
  font-size: 21px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.request-section {
  background: var(--green-950);
  color: white;
  padding-block: 105px;
}

.request-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 80px;
}

.request-copy {
  position: sticky;
  top: 120px;
}

.request-copy > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.direct-contact a {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  padding: 13px;
}

.direct-contact a > span {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
  font-weight: 800;
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 13px;
}

.privacy-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 27px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  padding: 15px;
}

.privacy-callout > b {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 12px;
}

.privacy-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 11px;
}

.request-form {
  display: grid;
  gap: 19px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.23);
  color: var(--ink);
  padding: 40px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #d9dfda;
  border-radius: 10px;
  background: #fbfaf6;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  padding: 13px 14px;
}

.request-form input[type="file"] {
  border-style: dashed;
  padding: 19px;
}

.request-form small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.recipient-fields {
  display: grid;
  gap: 16px;
  border: 1px solid #e3d4ad;
  border-radius: 13px;
  background: #fbf7eb;
  padding: 19px;
}

.recipient-fields[hidden],
.hidden-field {
  display: none;
}

.request-form .check-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.check-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--green-700);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.legal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #09271f;
  color: white;
  padding-block: 48px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.legal-grid h2 {
  font-size: 28px;
}

.legal-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

footer {
  background: #071f19;
  color: white;
  padding-block: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

.footer-brand .brand-copy strong {
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a,
.footer-grid > p {
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
}

.footer-grid > p {
  justify-self: end;
  margin: 0;
}

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

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 70px 85px;
  }

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

  .hero-visual {
    width: min(100%, 570px);
    min-height: 430px;
    margin: 0 auto;
  }

  .split-heading,
  .mexico-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-cards,
  .mexico-categories {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child,
  .mexico-categories article:last-child {
    grid-column: 1 / -1;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .document-stack {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .addons > div {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .steps-grid::before {
    display: none;
  }

  .request-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .request-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 560px);
  }

  .nav-shell {
    min-height: 70px;
    gap: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px 4px 12px 4px;
    font-size: 16px;
  }

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

  .brand-copy small {
    display: none;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-body {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-row {
    display: grid;
    gap: 9px;
  }

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

  .card-translation {
    top: 20px;
    right: 5px;
    width: min(89%, 300px);
  }

  .card-photo {
    top: 160px;
    left: 0;
    width: min(76%, 250px);
  }

  .card-mexico {
    right: 0;
    bottom: 42px;
    width: min(88%, 290px);
  }

  .visual-note {
    top: 137px;
  }

  .delivery-path {
    right: 36px;
    bottom: -5px;
  }

  .section,
  .detail-section,
  .mexico-section,
  .request-section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .detail-copy h2,
  .mexico-heading h2,
  .request-copy h2 {
    font-size: 38px;
  }

  .service-cards,
  .mexico-categories,
  .pricing-grid,
  .steps-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .mexico-categories article:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 0;
  }

  .document-stack {
    min-height: 370px;
  }

  .paper {
    width: 64%;
    min-height: 330px;
    padding: 28px 24px;
  }

  .price-card {
    min-height: 450px;
    padding: 32px 27px;
  }

  .addons {
    padding: 24px;
  }

  .addons > div {
    grid-template-columns: 1fr;
  }

  .photo-guidance {
    grid-template-columns: 1fr;
  }

  .delivery-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .delivery-banner i {
    display: none;
  }

  .delivery-banner div {
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
  }

  .delivery-banner div:last-child {
    border-bottom: 0;
  }

  .steps-grid article {
    display: grid;
    grid-template-columns: 53px 1fr;
    column-gap: 17px;
    text-align: left;
  }

  .steps-grid article > span {
    grid-row: 1 / 3;
  }

  .steps-grid h3 {
    margin: 4px 0 7px;
  }

  .request-form {
    border-radius: 18px;
    padding: 25px 19px;
  }

  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-grid > p {
    justify-self: start;
  }
}

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

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