:root {
  --navy: #071826;
  --navy-soft: #0d2536;
  --green: #1fbf75;
  --green-deep: #0a8f57;
  --red: #ff3347;
  --ice: #d9eef2;
  --white: #ffffff;
  --muted: #9cb4c1;
  --line: rgba(217, 238, 242, 0.16);
  --background: #f5f8f8;
  --foreground: #071826;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(100% - 64px, 1400px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 26%, rgba(31, 191, 117, 0.12), transparent 25%),
    radial-gradient(circle at 23% 68%, rgba(47, 144, 194, 0.14), transparent 28%),
    var(--navy);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(7, 24, 38, 0.98) 0%, rgba(7, 24, 38, 0.72) 46%, rgba(7, 24, 38, 0.05) 78%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(217, 238, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 238, 242, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

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

.brand-symbol {
  width: 62px;
  height: 54px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.brand-name strong {
  font-size: 25px;
  font-weight: 850;
}

.brand-name strong span {
  color: var(--red);
}

.brand-name small {
  margin-top: 8px;
  color: var(--ice);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
}

.desktop-nav a {
  position: relative;
  color: #edf7f7;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--navy);
  background: var(--green);
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.25fr);
  align-items: center;
  min-height: 694px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 70px 0 96px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #74cce4;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(64px, 6.3vw, 98px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: var(--white);
}

.hero-description {
  max-width: 620px;
  margin: 30px 0 0;
  color: #dbe8eb;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
}

.button-primary {
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 18px 40px rgba(31, 191, 117, 0.24);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary span,
.text-link span {
  font-size: 22px;
  transition: transform 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #36d68c;
  box-shadow: 0 22px 48px rgba(31, 191, 117, 0.34);
  transform: translateY(-2px);
}

.button-primary:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 2px solid var(--green);
  font-weight: 750;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 54px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.location-chip strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.location-dot {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(31, 191, 117, 0.45);
  border-radius: 50%;
}

.location-dot::after {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 104px;
  right: -4%;
  bottom: 102px;
  width: 68%;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 7% 7% 0 24%;
  border: 2px solid rgba(255, 51, 71, 0.9);
  content: "";
  clip-path: polygon(31% 0, 100% 12%, 82% 100%, 0 88%);
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.96) contrast(1.04);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 17%, black 40%);
}

.route {
  position: absolute;
  z-index: 4;
  border: 2px solid var(--green);
  pointer-events: none;
}

.route-one {
  top: 7%;
  right: 8%;
  width: 42%;
  height: 82%;
  clip-path: polygon(28% 0, 100% 16%, 76% 100%, 0 82%);
}

.route-two {
  right: 35%;
  bottom: -5%;
  width: 30%;
  height: 72%;
  border-color: var(--red);
  clip-path: polygon(40% 0, 100% 9%, 64% 100%, 0 86%);
}

.trust-strip {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(31, 191, 117, 0.6);
  background: rgba(7, 24, 38, 0.94);
  backdrop-filter: blur(18px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 102px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item > span:last-child {
  display: grid;
}

.trust-item strong {
  font-size: 15px;
}

.trust-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(31, 191, 117, 0.5);
  border-radius: 11px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  padding: 11px 14px;
  border: 1px solid var(--green);
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 50px;
  right: 0;
  display: grid;
  width: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 24, 38, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.mobile-menu nav a {
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  color: var(--navy);
  background: var(--green);
}

.section {
  padding: 130px 0;
}

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

.section-kicker {
  margin: 0 0 16px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #65e8a7;
}

.section-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2,
.faq-heading h2,
.safety-card h2 {
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p,
.experience-heading > p,
.faq-heading > p {
  margin: 0;
  color: #536a76;
  font-size: 17px;
  line-height: 1.7;
}

.opportunities {
  background:
    radial-gradient(circle at 90% 12%, rgba(31, 191, 117, 0.12), transparent 22%),
    #f5f8f8;
}

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

.opportunity-card {
  --card-accent: var(--green);
  position: relative;
  min-height: 410px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #d5e0e3;
  border-radius: 18px;
  background: white;
  box-shadow: 0 24px 70px rgba(7, 24, 38, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.opportunity-card::before {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 160px;
  height: 160px;
  border: 28px solid color-mix(in srgb, var(--card-accent) 24%, transparent);
  content: "";
  transform: rotate(24deg);
}

.opportunity-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 62%, white);
  box-shadow: 0 30px 80px rgba(7, 24, 38, 0.11);
  transform: translateY(-6px);
}

.accent-red {
  --card-accent: var(--red);
}

.accent-blue {
  --card-accent: #3d9bd4;
}

.accent-amber {
  --card-accent: #e2a52a;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--card-accent);
  font-size: 12px;
  font-weight: 900;
}

.card-topline i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-accent) 45%, white);
  border-radius: 50%;
  font-size: 17px;
  font-style: normal;
}

.opportunity-card h3 {
  max-width: 240px;
  margin: 54px 0 14px;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.opportunity-card > p {
  min-height: 76px;
  margin: 0;
  color: #60727c;
  font-size: 14px;
  line-height: 1.65;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.role-list span {
  padding: 7px 9px;
  border-radius: 6px;
  color: #39505d;
  background: #edf3f4;
  font-size: 10px;
  font-weight: 750;
}

.opportunity-card > a {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--card-accent);
  font-size: 12px;
  font-weight: 850;
}

.availability-note {
  margin: 28px 0 0;
  color: #738791;
  font-size: 12px;
  text-align: right;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(31, 191, 117, 0.08), transparent 38%),
    var(--navy);
}

.process-routes {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(30deg, transparent 42%, rgba(31, 191, 117, 0.5) 43%, transparent 44%),
    linear-gradient(145deg, transparent 70%, rgba(255, 51, 71, 0.5) 71%, transparent 72%);
  background-size: 720px 720px, 900px 900px;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(520px, 1fr);
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.process-intro > p:not(.section-kicker) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: #b8cbd3;
  font-size: 17px;
  line-height: 1.75;
}

.button-light {
  color: var(--navy);
  background: white;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button-light:hover {
  background: var(--ice);
  transform: translateY(-2px);
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 530px;
  margin: 10px 0 0;
  color: #9eb4bf;
  font-size: 14px;
  line-height: 1.7;
}

.experiences {
  background:
    linear-gradient(180deg, #e8f1f2 0%, #f7f9f8 100%);
}

.experience-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.7fr;
  align-items: end;
  gap: 54px;
}

.experience-heading .section-kicker {
  align-self: start;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #d4e2e4;
  border-radius: 20px;
  background: white;
  box-shadow: 0 25px 75px rgba(7, 24, 38, 0.08);
}

.testimonial-card.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.testimonial-photo {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--navy);
}

.testimonial-photo::after {
  position: absolute;
  inset: auto -24% -24% 24%;
  height: 44%;
  border: 2px solid var(--green);
  content: "";
  transform: rotate(-18deg);
}

.testimonial-card.reverse .testimonial-photo::after {
  border-color: var(--red);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-photo span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  color: white;
  background: rgba(7, 24, 38, 0.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.quote-mark {
  height: 58px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
}

.testimonial-card.reverse .quote-mark {
  color: var(--red);
}

.testimonial-copy blockquote {
  margin: 14px 0 44px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.person {
  display: grid;
  gap: 5px;
  padding-top: 19px;
  border-top: 1px solid #dbe5e7;
}

.person strong {
  font-size: 14px;
}

.person span {
  color: #788c95;
  font-size: 10px;
}

.about {
  overflow: hidden;
  color: white;
  background: #0b2131;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  min-height: 620px;
}

.about-image-frame {
  position: absolute;
  inset: 0 10% 0 -22%;
  overflow: hidden;
  border: 1px solid rgba(31, 191, 117, 0.55);
  clip-path: polygon(16% 0, 100% 8%, 86% 100%, 0 88%);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.tijuana-badge {
  position: absolute;
  right: 0;
  bottom: 36px;
  display: grid;
  min-width: 225px;
  padding: 24px;
  border: 1px solid rgba(217, 238, 242, 0.25);
  border-radius: 16px;
  background: rgba(7, 24, 38, 0.86);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.tijuana-badge span {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tijuana-badge strong {
  margin-top: 6px;
  font-size: 31px;
}

.tijuana-badge small {
  margin-top: 5px;
  color: #9fb4be;
  font-size: 11px;
}

.about-copy .section-kicker {
  color: #65e8a7;
}

.about-copy .lead {
  margin: 30px 0 42px;
  color: #b6cbd3;
  font-size: 18px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.value-grid article {
  padding: 24px;
  background: #0b2131;
}

.value-grid span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
}

.value-grid h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}

.value-grid p {
  margin: 0;
  color: #90a7b1;
  font-size: 12px;
  line-height: 1.55;
}

.safety-section {
  padding: 48px 0;
  background: var(--red);
}

.safety-card {
  display: grid;
  grid-template-columns: 90px 0.9fr 1.1fr;
  align-items: center;
  gap: 46px;
  color: white;
}

.safety-symbol {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 38px;
  font-weight: 900;
}

.safety-card .section-kicker {
  margin-bottom: 8px;
  color: white;
  opacity: 0.78;
}

.safety-card h2 {
  font-size: clamp(32px, 3vw, 48px);
}

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

.safety-card li {
  position: relative;
  padding-left: 27px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.safety-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "✓";
}

.contact-section {
  color: white;
  background:
    radial-gradient(circle at 8% 82%, rgba(31, 191, 117, 0.13), transparent 25%),
    var(--navy);
}

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

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

.contact-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 28px 0 38px;
  color: #a7bdc6;
  font-size: 17px;
  line-height: 1.7;
}

.contact-points {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.contact-points article {
  display: grid;
  padding: 22px 0;
  background: var(--navy);
}

.contact-points span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-points strong {
  margin-top: 7px;
  font-size: 17px;
}

.contact-points small {
  margin-top: 5px;
  color: #8fa7b2;
  font-size: 11px;
}

.contact-warning {
  margin-top: 32px;
  padding: 20px;
  border-left: 3px solid var(--red);
  color: #c5d5db;
  background: rgba(255, 51, 71, 0.08);
  font-size: 12px;
  line-height: 1.65;
}

.contact-form {
  padding: 42px;
  border: 1px solid rgba(217, 238, 242, 0.18);
  border-radius: 22px;
  color: var(--navy);
  background: white;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28);
}

.form-heading {
  display: grid;
  margin-bottom: 30px;
}

.form-heading span {
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 7px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #243b48;
  font-size: 11px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cad9dd;
  border-radius: 9px;
  outline: none;
  color: var(--navy);
  background: #f8fbfb;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 191, 117, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 15px 0 0;
  color: #778b94;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.form-success {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid rgba(31, 191, 117, 0.42);
  border-radius: 8px;
  color: #126b47;
  background: rgba(31, 191, 117, 0.09);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.form-alert {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid rgba(255, 51, 71, 0.42);
  border-radius: 8px;
  color: #922134;
  background: rgba(255, 51, 71, 0.08);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.whatsapp-button {
  width: fit-content;
  margin-top: 28px;
  color: var(--navy);
  background: var(--green);
}

.faq-section {
  background: #f3f7f7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-heading > p {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid #cedcdf;
}

.faq-list details {
  border-bottom: 1px solid #cedcdf;
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #a9bdc4;
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  color: white;
  border-color: var(--green);
  background: var(--green);
  content: "−";
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 50px 28px 0;
  color: #5c727c;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding: 72px 0 22px;
  color: white;
  background: #04111b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.75fr;
  gap: 90px;
}

.footer-brand img {
  width: 150px;
  height: 135px;
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  max-width: 370px;
  margin: 20px 0 0;
  color: #8ea5af;
  font-size: 13px;
  line-height: 1.65;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
  padding-top: 20px;
}

.footer-grid nav strong,
.footer-contact strong {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-contact span,
.footer-contact a {
  color: #9fb3bc;
  font-size: 12px;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-contact a {
  margin-top: 12px;
  color: white;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #718894;
  font-size: 9px;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    right: -24%;
    width: 86%;
    opacity: 0.72;
  }

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

  .process-layout,
  .about-grid,
  .contact-grid {
    gap: 60px;
  }

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

  .testimonial-card {
    min-height: 420px;
  }

  .experience-heading {
    grid-template-columns: 0.45fr 1fr;
  }

  .experience-heading > p {
    grid-column: 2;
  }

  .safety-card {
    grid-template-columns: 74px 1fr;
  }

  .safety-card ul {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 36px, 1400px);
  }

  .hero {
    min-height: 850px;
  }

  .site-header {
    min-height: 86px;
  }

  .brand-symbol {
    width: 48px;
    height: 44px;
  }

  .brand-name strong {
    font-size: 20px;
  }

  .hero-content {
    min-height: 662px;
  }

  .hero-copy {
    padding: 72px 0 130px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-description {
    max-width: 94%;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .location-chip {
    margin-top: 28px;
  }

  .hero-visual {
    top: 86px;
    right: -62%;
    bottom: 94px;
    width: 150%;
    opacity: 0.38;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    min-height: 94px;
  }

  .trust-item {
    gap: 0;
    padding: 10px 8px;
    text-align: center;
  }

  .trust-icon,
  .trust-item small {
    display: none;
  }

  .trust-item strong {
    font-size: 10px;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .process-intro h2,
  .about-copy h2,
  .contact-copy h2,
  .faq-heading h2,
  .safety-card h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .split-heading,
  .process-layout,
  .experience-heading,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading {
    align-items: start;
  }

  .experience-heading > p {
    grid-column: auto;
  }

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

  .opportunity-card {
    min-height: 390px;
  }

  .availability-note {
    text-align: left;
  }

  .process-intro,
  .contact-copy {
    position: static;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
  }

  .testimonial-card,
  .testimonial-card.reverse {
    grid-template-columns: 1fr;
  }

  .testimonial-photo {
    min-height: 360px;
    max-height: 420px;
  }

  .testimonial-copy {
    padding: 30px;
  }

  .testimonial-copy blockquote {
    font-size: 18px;
  }

  .about-visual {
    min-height: 480px;
  }

  .about-image-frame {
    inset: 0 -20% 0 -35%;
  }

  .tijuana-badge {
    right: 0;
    min-width: 190px;
  }

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

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

  .safety-card ul {
    grid-column: auto;
  }

  .safety-symbol {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .contact-form {
    padding: 26px 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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