:root {
  --ink: #10233c;
  --ink-soft: #3e536d;
  --navy: #0f3045;
  --navy-light: #174e63;
  --mint: #00a981;
  --mint-dark: #00775e;
  --mint-pale: #e5faf3;
  --sky: #eef8fa;
  --paper: #ffffff;
  --surface: #f6fbfa;
  --line: #d7e7e4;
  --muted: #617489;
  --danger: #b42335;
  --success: #08745d;
  --focus: #0a7f9c;
  --shadow-sm: 0 5px 16px rgba(15, 48, 69, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 48, 69, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shell: 1240px;
}

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

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  line-height: 1.12;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

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

.narrow {
  max-width: 900px;
}

.topline {
  height: 5px;
  background: linear-gradient(90deg, var(--mint), #51d2b2, #b7f1e2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 92px;
  padding: 12px 0 6px;
  background: linear-gradient(180deg, rgba(246, 251, 250, 0.98) 70%, rgba(246, 251, 250, 0));
}

.header-inner {
  width: min(100% - 40px, var(--shell));
  min-height: 70px;
  margin-inline: auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(215, 231, 228, 0.9);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 35px rgba(15, 48, 69, 0.1);
  backdrop-filter: blur(16px);
}

.personal-attention {
  position: relative;
  z-index: 2;
  border-block: 1px solid #d5eee8;
  background: linear-gradient(90deg, #e8fbf5, #f7fffd 52%, #e8fbf5);
}

.personal-attention-inner {
  width: min(100% - 40px, var(--shell));
  min-height: 44px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.personal-attention p {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.personal-attention svg {
  width: 19px;
  height: 19px;
  flex: none;
  fill: none;
  stroke: var(--mint-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.personal-attention p strong { color: var(--ink); }
.personal-attention p span { color: var(--muted); }

.personal-attention a {
  flex: none;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.personal-attention a:hover { text-decoration: underline; }

.brand-logo {
  flex: none;
  width: 185px;
  text-decoration: none;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #f7fcfb;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.country-badge svg {
  width: 25px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(16, 35, 60, 0.12);
}

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

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--mint-dark);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

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

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

.menu-toggle[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines::after { top: 0; transform: rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: linear-gradient(100deg, #00b98b, #008e70);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 169, 129, 0.18);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 169, 129, 0.25);
  filter: brightness(0.97);
}

.button svg,
.text-link svg,
.insurance-links svg,
.related-grid svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 13px;
}

.button-secondary {
  border-color: #79cdb8;
  background: #fff;
  color: var(--mint-dark);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--mint-pale);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: var(--mint-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link.centered {
  width: max-content;
  margin: 22px auto 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--mint);
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  padding-block: 56px 46px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 44px;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.home-hero::before {
  width: 320px;
  height: 320px;
  top: 60px;
  right: 37%;
  border: 54px solid rgba(0, 169, 129, 0.07);
  animation: hero-orbit 8s ease-in-out infinite alternate;
}

.home-hero::after {
  width: 95px;
  height: 95px;
  right: -15px;
  bottom: 56px;
  background: linear-gradient(135deg, rgba(51, 222, 181, 0.2), rgba(15, 48, 69, 0.06));
  animation: hero-orbit 6s ease-in-out -2s infinite alternate-reverse;
}

.home-hero > * { position: relative; z-index: 1; }

@keyframes hero-orbit {
  from { transform: translate3d(0, -8px, 0) rotate(-4deg); }
  to { transform: translate3d(12px, 10px, 0) rotate(5deg); }
}

.hero-copy h1,
.service-hero h1,
.content-hero h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  color: var(--mint-dark);
  font-style: normal;
}

.hero-copy > p,
.service-hero > div > p,
.content-hero > p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.hero-trust {
  display: flex;
  gap: 15px 20px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 2.5;
}

.hero-visual-pair {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(172px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint-pale);
  box-shadow: var(--shadow-md);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 48, 69, 0.05), transparent 58%);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.hero-agent-panel {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  min-height: 410px;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cbe9e1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #eafff8 0%, #d7f6ec 52%, #c3eee1 100%);
  box-shadow: var(--shadow-md);
}

.hero-agent-panel img {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: contain;
  object-position: bottom center;
  padding-top: 14px;
}

.hero-agent-panel > div {
  min-height: 96px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: var(--navy);
  color: #fff;
}

.hero-agent-panel strong { font-size: 14px; }
.hero-agent-panel span { color: #d9ecef; font-size: 12px; line-height: 1.35; }

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 13px;
  background: rgba(15, 48, 69, 0.86);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-visual figcaption strong { font-size: 15px; }
.hero-visual figcaption span { color: #d9ecef; font-size: 12px; }

.proof-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.proof-strip .shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.proof-strip span {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
}

.proof-strip span + span { border-left: 1px solid var(--line); }
.proof-strip svg,
.benefit-icon svg,
.values-grid svg,
.trust-list svg {
  width: 23px;
  height: 23px;
  flex: none;
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding-block: 72px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 25px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.trust-panel h2,
.guide-section h2,
.methodology > h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-heading.split > p {
  margin: 0;
}

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

.service-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  border-color: #80d4bf;
  box-shadow: var(--shadow-md);
}

.card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--mint-pale);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(15, 48, 69, 0.62));
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .card-media img { transform: scale(1.04); }

.card-icon {
  position: absolute;
  top: 187px;
  left: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 13px;
  background: var(--mint-dark);
  color: #fff;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-copy {
  flex: 1;
  padding: 32px 18px 18px;
}

.card-copy h3 {
  margin: 0;
  font-size: 20px;
}

.card-copy p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.card-lead-button {
  min-height: 42px;
  margin: 0 18px 18px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--mint-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.card-lead-button:hover { background: var(--mint); transform: translateY(-1px); }
.card-lead-button:focus-visible { outline: 3px solid rgba(0, 169, 129, 0.3); outline-offset: 3px; }

.whatsapp-service {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.whatsapp-agent-cue {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #eafff8, #bff1e1);
  box-shadow: 0 9px 22px rgba(7, 78, 37, 0.22);
  animation: whatsapp-agent-float 2.2s ease-in-out infinite;
}

.whatsapp-agent-cue img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.whatsapp-agent-label {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(7, 78, 37, 0.12);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

@keyframes whatsapp-agent-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.whatsapp-float {
  min-height: 48px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 12px 28px rgba(7, 78, 37, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-service:hover .whatsapp-float { transform: translateY(-2px); background: #12843d; }
.whatsapp-service:hover .whatsapp-agent-cue { animation-play-state: paused; }
.whatsapp-service:focus-visible { outline: 3px solid rgba(22, 163, 74, 0.42); outline-offset: 5px; border-radius: 18px; }
.whatsapp-float svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.insurance-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.insurance-links a,
.related-grid a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.insurance-links a:hover,
.related-grid a:hover {
  border-color: #81d4c0;
  background: var(--mint-pale);
  color: var(--mint-dark);
}
