:root {
  --white: #fff;
  --navy: #061b45;
  --navy-2: #082858;
  --teal: #087e82;
  --teal-dark: #056a6e;
  --coral: #f55245;
  --coral-hover: #df4035;
  --pale: #f4f8fa;
  --aqua: #dff4f3;
  --muted: #4c5b70;
  --border: #ccd6df;
  --shadow: 0 16px 38px rgb(6 27 69 / 12%);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1536px;
  --gutter: clamp(20px, 4vw, 58px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid rgb(8 126 130 / 35%); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-140%);
  background: var(--navy);
  color: white;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgb(204 214 223 / 50%);
  background: rgb(255 255 255 / 96%);
}
.header-inner { min-height: 96px; display: flex; align-items: center; gap: 36px; }
.wordmark {
  margin-right: auto;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -.035em;
}
.main-nav, .language-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a, .language-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 17px;
  font-weight: 650;
  text-decoration: none;
}
.language-nav { gap: 20px; }
.language-nav a[aria-current="page"] { color: var(--teal); }
.language-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--teal);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 4px;
  padding: 14px 24px;
  cursor: pointer;
  background: var(--coral);
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 7px 20px rgb(245 82 69 / 20%);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.button:hover { background: var(--coral-hover); transform: translateY(-1px); box-shadow: 0 10px 25px rgb(245 82 69 / 26%); }
.button svg { width: 28px; height: 28px; flex: 0 0 28px; }
.button--header { min-height: 48px; padding-inline: 22px; white-space: nowrap; }
.button--large { min-height: 64px; padding: 18px 32px; font-size: 19px; }
.button--full { width: 100%; }

.hero { overflow: hidden; }
.hero-inner {
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 72px);
  padding-top: 66px;
  padding-bottom: 70px;
}
.hero-copy { position: relative; z-index: 1; padding-block: 18px; }
.hero h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(54px, 4.8vw, 76px);
  line-height: .96;
  letter-spacing: -.042em;
  text-wrap: balance;
}
.hero-copy > p { max-width: 660px; margin: 0 0 30px; color: #173058; font-size: clamp(19px, 1.45vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.hero-actions .button { min-height: 58px; padding: 16px 26px; font-size: 18px; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 10px; color: var(--teal-dark); font-weight: 700; text-decoration: none; }
.whatsapp-link svg { width: 28px; height: 28px; }
.hero-art {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(223 244 243 / 58%) 0, rgb(244 248 250 / 32%) 42%, transparent 70%);
}
.hero-art img { width: min(108%, 700px); max-width: 108%; aspect-ratio: 3/2; object-fit: contain; }

.trust-band { background: var(--pale); border-block: 1px solid #edf2f5; }
.trust-inner { min-height: 208px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.trust-item { display: grid; grid-template-columns: 104px 1fr; align-items: center; gap: 26px; padding-block: 38px; }
.trust-item + .trust-item { border-left: 1px solid var(--border); padding-left: clamp(30px, 5vw, 82px); }
.trust-icon { width: 84px; color: var(--teal-dark); }
.trust-item h2 { margin: 0 0 7px; font-size: clamp(23px, 2vw, 31px); line-height: 1.18; }
.trust-item p { margin: 0; color: #1d3154; font-size: 18px; line-height: 1.45; }

.section { padding-block: clamp(78px, 8vw, 118px); }
#how { padding-block: 36px 30px; }
.section-heading { margin: 0 0 13px; font-family: var(--serif); font-size: clamp(41px, 3.7vw, 56px); line-height: 1.05; letter-spacing: -.03em; }
.section-lede { max-width: 820px; margin: 0; color: var(--muted); font-size: 20px; }

.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 28px; }
.steps::before { content: ""; position: absolute; top: 139px; left: 12%; right: 12%; height: 2px; background: var(--navy); opacity: .8; }
.step { position: relative; z-index: 1; text-align: center; }
.step-number { display: grid; width: 39px; height: 39px; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: var(--teal); color: white; font-weight: 700; }
.step-icon { width: 126px; height: 126px; margin: 0 auto 23px; padding: 15px; color: var(--navy); background: white; }
.step h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.3; }
.step p { margin: 0; color: var(--muted); font-size: 16px; }
.no-guarantee { margin: 32px 0 0; text-align: center; color: var(--muted); font-size: 16px; }

.audience { padding-block: 58px 42px; background: var(--pale); }
.audience .section-heading { font-size: clamp(34px, 3.4vw, 50px); }
.audience-list { display: grid; grid-template-columns: repeat(6, 1fr); margin: 36px 0 30px; padding: 0; list-style: none; }
.audience-list li { display: flex; min-height: 112px; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 0 18px; text-align: center; }
.audience-list li + li { border-left: 1px solid var(--border); }
.audience-list svg { width: 48px; height: 48px; color: var(--navy); }
.audience-list span { font-size: 15px; line-height: 1.3; }
.password-note { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0; padding-top: 26px; border-top: 1px solid var(--border); text-align: center; }
.password-note svg { width: 31px; color: var(--teal); flex: 0 0 auto; }

.faq-privacy { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(310px, .9fr); gap: clamp(48px, 7vw, 106px); }
#faq { padding-block: 54px 30px; }
.faq-list { margin-top: 24px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; min-height: 72px; align-items: center; gap: 22px; cursor: pointer; font-size: 20px; font-weight: 750; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border: 2px solid currentColor; border-radius: 50%; color: var(--navy); font-size: 27px; font-weight: 400; line-height: 1; }
.faq-item[open] .faq-mark { color: var(--teal); }
.faq-item[open] .faq-mark::before { content: "−"; }
.faq-item:not([open]) .faq-mark::before { content: "+"; }
.faq-answer { margin: -2px 52px 25px 60px; color: #273a5b; font-size: 17px; }
.privacy-panel { padding-left: clamp(34px, 5vw, 76px); border-left: 1px solid var(--border); }
.privacy-panel h2 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(38px, 3.2vw, 48px); line-height: 1.03; }
.privacy-panel p { margin: 0; font-size: 19px; }
.privacy-panel img { width: min(100%, 420px); margin: 32px auto 0; aspect-ratio: 3/2; object-fit: contain; }

.closing-cta { padding-block: 27px; background: var(--navy); color: #fff; text-align: center; }
.closing-cta h2 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(35px, 3.2vw, 48px); }
.closing-cta p { max-width: 800px; margin: 0 auto 25px; color: #e8eef7; }
.closing-cta .disclosure { margin: 22px auto 0; color: #d7e0ec; font-size: 14px; }

.site-footer { padding-block: 30px; background: white; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 30px; }
.footer-links a { font-size: 15px; text-decoration: none; }
.footer-note { font-size: 14px; text-align: right; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgb(6 27 69 / 68%); }
.modal-card { position: relative; width: min(100%, 590px); max-height: calc(100vh - 40px); overflow: auto; padding: 38px; border-radius: 6px; background: white; box-shadow: 0 28px 80px rgb(0 0 0 / 28%); }
.modal-card h2 { margin: 0 36px 14px 0; font-family: var(--serif); font-size: 36px; line-height: 1.1; }
.modal-card p { color: #263c5f; font-size: 16px; }
.modal-close { position: absolute; top: 17px; right: 17px; display: grid; width: 42px; height: 42px; place-items: center; border: 0; background: transparent; color: var(--navy); cursor: pointer; font-size: 30px; }
.modal-note { padding: 15px 17px; border-left: 4px solid var(--teal); background: var(--pale); }
body.modal-open { overflow: hidden; }

.article-hero { padding: 72px 0 58px; border-bottom: 1px solid var(--border); }
.breadcrumbs { margin-bottom: 25px; color: var(--teal-dark); font-size: 14px; font-weight: 700; }
.breadcrumbs a { text-decoration: none; }
.article-hero h1 { max-width: 1000px; margin: 0 0 18px; font-family: var(--serif); font-size: clamp(45px, 5vw, 70px); line-height: 1.04; letter-spacing: -.035em; }
.article-deck { max-width: 820px; margin: 0 0 24px; color: var(--muted); font-size: 21px; }
.article-meta { color: var(--muted); font-size: 14px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 790px) minmax(240px, 320px); justify-content: space-between; gap: 70px; padding-top: 58px; padding-bottom: 90px; }
.article-body { color: #1b3155; }
.article-body h2 { margin: 54px 0 13px; color: var(--navy); font-family: var(--serif); font-size: 36px; line-height: 1.15; }
.article-body h3 { margin: 32px 0 10px; color: var(--navy); font-size: 22px; }
.article-body p, .article-body li { font-size: 18px; }
.article-body a { color: var(--teal-dark); font-weight: 650; }
.article-body .callout { margin: 30px 0; padding: 22px 25px; border-left: 4px solid var(--teal); background: var(--pale); }
.article-body .disclaimer { padding: 18px 22px; border: 1px solid var(--border); color: var(--muted); font-size: 15px; }
.article-aside { align-self: start; position: sticky; top: 24px; padding: 25px; border-top: 4px solid var(--teal); background: var(--pale); }
.article-aside h2 { margin: 0 0 10px; font-family: var(--serif); font-size: 28px; }
.article-aside p { font-size: 15px; }
.article-aside .button { margin-top: 7px; }
.sources { margin-top: 48px; padding-top: 27px; border-top: 1px solid var(--border); }
.sources li { margin-bottom: 10px; font-size: 15px; }

.legal { width: min(100%, 900px); margin-inline: auto; padding: 70px var(--gutter) 100px; }
.legal h1 { font-family: var(--serif); font-size: 56px; line-height: 1.05; }
.legal h2 { margin-top: 42px; font-family: var(--serif); font-size: 32px; }
.legal p, .legal li { color: #20385c; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .hero-inner { min-height: 570px; grid-template-columns: minmax(0, 1.18fr) minmax(290px, .82fr); gap: 30px; padding-top: 46px; padding-bottom: 54px; }
  .hero h1 { max-width: 620px; font-size: clamp(44px, 5.1vw, 55px); }
  .hero-copy > p { font-size: 18px; }
  .hero-art { min-height: 300px; }
  .trust-item { grid-template-columns: 76px 1fr; }
  .trust-icon { width: 66px; }
  .steps { gap: 20px; }
  .audience-list { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .audience-list li:nth-child(4) { border-left: 0; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 80px; gap: 18px; }
  .button--header { display: none; }
  .language-nav { gap: 15px; }
  .language-nav a { font-size: 15px; }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; gap: 18px; padding-top: 55px; }
  .hero-copy { text-align: left; }
  .hero h1 { max-width: 720px; font-size: clamp(48px, 8vw, 64px); }
  .hero-art { min-height: 0; margin-top: 0; }
  .hero-art img { width: min(100%, 650px); }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--border); border-left: 0; padding-left: 0; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 52px; }
  .steps::before { display: none; }
  .faq-privacy { grid-template-columns: 1fr; }
  .privacy-panel { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 20px; padding: 46px 0 0; border-top: 1px solid var(--border); border-left: 0; }
  .privacy-panel img { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 22px; }
  .footer-note { text-align: center; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-inner { align-items: center; }
  .wordmark { font-size: 29px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-copy > p { font-size: 18px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-art img { width: 115%; max-width: 115%; margin-left: -7%; }
  .trust-item { grid-template-columns: 58px 1fr; gap: 17px; }
  .trust-icon { width: 54px; }
  .steps { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 44px 72px 1fr; gap: 15px; text-align: left; align-items: center; }
  .step-number { margin: 0; }
  .step-icon { width: 72px; height: 72px; margin: 0; padding: 7px; }
  .step-copy { align-self: center; }
  .audience-list { grid-template-columns: 1fr 1fr; }
  .audience-list li:nth-child(3), .audience-list li:nth-child(5) { border-left: 0; }
  .audience-list li:nth-child(4) { border-left: 1px solid var(--border); }
  .faq-item summary { min-height: 72px; gap: 14px; font-size: 17px; }
  .faq-mark { width: 32px; height: 32px; flex-basis: 32px; }
  .faq-answer { margin-left: 46px; margin-right: 5px; }
  .privacy-panel { grid-template-columns: 1fr; }
  .privacy-panel img { width: 78%; margin-inline: auto; }
  .closing-cta .button { width: 100%; }
  .modal-card { padding: 30px 22px 24px; }
  .modal-card h2 { font-size: 31px; }
  .article-hero { padding-top: 52px; }
  .article-body h2 { font-size: 31px; }
}

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