:root {
  --navy: #071a2e;
  --navy-soft: #0d2b48;
  --blue: #0e6edb;
  --blue-dark: #0755ad;
  --green: #25d366;
  --green-hover: #32dc72;
  --ink: #102a40;
  --muted: #607485;
  --line: #d9e4ec;
  --surface: #f4f7fa;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 22px 58px rgba(5, 32, 56, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

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

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

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #59cfff;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid #e2e9ef;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(5, 31, 54, 0.05);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 232px;
  height: 64px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 44%;
  mix-blend-mode: multiply;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: flex;
  padding: 4px;
  border: 1px solid #d7e2eb;
  border-radius: 10px;
  background: #eef3f7;
}

.language-switcher button {
  min-width: 39px;
  min-height: 36px;
  border: 0;
  border-radius: 7px;
  color: #5c7182;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(7, 31, 53, 0.1);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 19px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-large {
  min-height: 56px;
  padding: 16px 23px;
  font-size: 15px;
}

.button-whatsapp {
  color: #062c18;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.22);
}

.button-whatsapp:hover {
  background: var(--green-hover);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}

.button-secondary,
.button-light {
  border-color: rgba(255, 255, 255, 0.27);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover,
.button-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  color: var(--white);
  background: linear-gradient(115deg, #06182b 0%, #08223c 100%);
}

.hero-layout {
  padding-block: 82px 68px;
}

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

.eyebrow {
  margin: 0 0 17px;
  color: #9ed7f1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #2773a8;
}

.eyebrow.light {
  color: #9ed7f1;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 6.5vw, 78px);
  font-weight: 800;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #c8d8e5;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-note {
  max-width: 670px;
  margin: 18px 0 0;
  color: #94acbf;
  font-size: 12px;
  line-height: 1.55;
}

.hero-assurances {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 33px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #d4e1ea;
  font-size: 13px;
  line-height: 1.35;
}

.hero-assurances li > span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  border-radius: 50%;
  color: #083c22;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.hero-meta {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta > div {
  min-width: 0;
  padding: 20px 22px 20px 0;
}

.hero-meta > div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta small {
  display: block;
  margin-bottom: 4px;
  color: #86a1b5;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta strong,
.hero-meta a {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.hero-meta a {
  color: #8be5ff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 82px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 36px;
}

.section-heading h2,
.coverage h2,
.final-cta h2 {
  font-size: clamp(38px, 4.5vw, 56px);
}

.section-heading > p,
.section-heading .process-intro {
  max-width: 440px;
  margin: 0;
}

.compact-heading > p {
  color: var(--muted);
}

.services {
  background: var(--white);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  min-width: 0;
  padding: 27px 20px;
  border-right: 1px solid var(--line);
}

.service-item:last-child {
  border-right: 0;
}

.service-number {
  display: block;
  margin-bottom: 23px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}

.service-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.secondary-services {
  max-width: 900px;
  margin: 27px auto 0;
  color: #667b8b;
  text-align: center;
  font-size: 12px;
}

.process {
  color: var(--white);
  background: var(--navy);
}

.process-heading {
  align-items: flex-start;
}

.process-intro p {
  margin: 0 0 13px;
  color: #a9bfce;
}

.text-cta {
  color: #8be5ff;
  font-size: 14px;
  font-weight: 850;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  list-style: none;
}

.process-grid li {
  min-height: 225px;
  padding: 30px;
  background: #0a2139;
}

.process-grid li > span {
  display: inline-block;
  margin-bottom: 33px;
  color: #8be5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.process-grid p {
  margin: 11px 0 0;
  color: #9bb2c3;
  font-size: 13px;
}

.coverage {
  background: var(--surface);
}

.coverage-simple {
  max-width: 900px;
  text-align: center;
}

.coverage-simple .large-copy {
  margin-inline: auto;
}

.large-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.coverage-places {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.coverage-places span {
  padding: 9px 14px;
  border: 1px solid #cbdde9;
  border-radius: 999px;
  color: #466478;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.availability-note {
  max-width: 700px;
  display: flex;
  justify-content: center;
  gap: 11px;
  margin: 25px auto 0;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #718391;
  font-size: 12px;
  text-align: left;
}

.availability-note > span:first-child {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  flex: 0 0 21px;
  border-radius: 50%;
  color: var(--white);
  background: #65869e;
  font-size: 11px;
  font-weight: 900;
}

.final-cta {
  padding: 70px 0;
  background: var(--white);
}

.final-cta-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 58px;
  padding: 52px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(125deg, #08223c, #0b5fae);
  box-shadow: var(--shadow);
}

.final-cta-card > div:first-child > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: #c5daea;
  font-size: 16px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.contact-phone {
  margin-top: 5px;
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 42px 0 24px;
  color: #92aabd;
  background: #041321;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 35px;
  padding-bottom: 30px;
}

.footer-name {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  color: var(--white);
  line-height: 1;
}

.footer-name strong {
  font-size: 22px;
  letter-spacing: 0.06em;
}

.footer-name span {
  margin-top: 5px;
  color: #83a2b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-layout p {
  margin: 0;
  font-size: 12px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-meta strong {
  margin-top: 5px;
  color: #c5d8e6;
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #668196;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 680px;
  text-align: right;
}

.mobile-whatsapp {
  display: none;
}

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

.chat-launcher {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 38px rgba(3, 36, 68, 0.3);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.triage-chat {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 78px;
  width: min(430px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 105px));
  overflow: auto;
  border: 1px solid #cbdce9;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 25px 80px rgba(3, 36, 68, 0.34);
}

.triage-chat[hidden] {
  display: none;
}

.chat-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--white);
  background: var(--navy);
}

.chat-header p {
  margin: 0 0 3px;
  color: #9dc4e1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chat-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.chat-header button {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.chat-intro {
  padding: 15px 22px 0;
}

.chat-intro p {
  margin: 0 0 5px;
  color: #526c7e;
  font-size: 11px;
  line-height: 1.45;
}

.chat-intro p:first-child {
  color: #193b55;
  font-weight: 800;
}

.chat-progress {
  padding: 9px 22px 0;
  color: #647b8c;
  font-size: 11px;
  font-weight: 800;
}

.chat-progress-track {
  display: block;
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 5px;
  background: #e6eff5;
}

.chat-progress-track span {
  display: block;
  height: 100%;
  background: var(--blue);
  transition: width 180ms ease;
}

#triage-form {
  padding: 22px;
}

.chat-step label {
  display: block;
  margin-bottom: 10px;
  color: #122d44;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.chat-step label span {
  color: #698092;
  font-size: 12px;
  font-weight: 600;
}

.chat-step input,
.chat-step select,
.chat-step textarea {
  display: block;
  width: 100%;
  border: 1px solid #b9ccda;
  border-radius: 10px;
  padding: 13px 14px;
  color: #102a40;
  background: var(--white);
}

.chat-step textarea {
  resize: vertical;
}

.chat-step input:focus,
.chat-step select:focus,
.chat-step textarea:focus {
  outline: 3px solid rgba(14, 110, 219, 0.2);
  border-color: var(--blue);
}

.chat-notice {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 9px;
  color: #536d80;
  background: #eff6fb;
  font-size: 12px;
  line-height: 1.55;
}

.chat-error {
  min-height: 22px;
  margin: 10px 0 0;
  color: #a02525;
  font-size: 12px;
  font-weight: 700;
}

.chat-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.chat-button {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.chat-back {
  border: 1px solid #b9ccda;
  color: #315268;
  background: var(--white);
}

.chat-next {
  margin-left: auto;
  border: 0;
  color: var(--white);
  background: var(--blue);
}

.chat-summary h3 {
  margin: 0;
  font-size: 21px;
}

.chat-summary > p {
  color: #5d7485;
  font-size: 13px;
}

.chat-summary dl {
  margin: 18px 0;
}

.chat-summary dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.chat-summary dt {
  color: #607789;
  font-size: 11px;
  font-weight: 800;
}

.chat-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #142f44;
  font-size: 12px;
}

@media (max-width: 920px) {
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .service-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-item:nth-child(even) {
    border-right: 0;
  }

  .service-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .final-actions {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }

  .shell {
    width: min(100% - 28px, 680px);
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    width: 174px;
    height: 48px;
  }

  .header-whatsapp {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switcher button {
    min-width: 32px;
    min-height: 32px;
    padding-inline: 6px;
  }

  .hero-layout {
    padding-block: 58px 50px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-assurances,
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta > div,
  .hero-meta > div + div {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-meta > div:first-child {
    border-top: 0;
  }

  .section {
    padding: 67px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 29px;
  }

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

  .process-grid li {
    min-height: auto;
    padding: 27px;
  }

  .process-grid li > span {
    margin-bottom: 20px;
  }

  .final-cta-card {
    padding: 31px;
  }

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

  .footer-meta {
    align-items: flex-start;
  }

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

  .footer-bottom p:last-child {
    text-align: left;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 85;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #062c18;
    background: var(--green);
    box-shadow: 0 18px 42px rgba(4, 35, 20, 0.3);
    font-size: 14px;
    font-weight: 900;
  }

  .chat-launcher {
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .triage-chat {
    inset: 8px 8px calc(72px + env(safe-area-inset-bottom));
    width: auto;
    max-height: none;
    border-radius: 15px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 156px;
    height: 44px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-child(even),
  .service-item:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .final-cta-card {
    padding: 28px 23px;
  }

  .chat-summary dl > div {
    grid-template-columns: 100px 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
