:root {
  --pink: #e55183;
  --pink-bright: #e55183;
  --black: #000000;
  --ink: #000000;
  --soft: #efebe9;
}

body,
.statement,
.results,
.contact {
  color: #000;
}

.hero,
.site-header,
.solution,
.about,
footer {
  background: #000;
}

.button-primary,
.recommended,
.contact .eyebrow,
.results .eyebrow {
  color: #000;
}

.button-light {
  background: #000;
}

.button-outline {
  border-color: #000;
}

body {
  font-family: Poppins, Arial, Helvetica, sans-serif;
}

section[id] {
  scroll-margin-top: 92px;
}

.results {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.results-list {
  margin-top: 42px;
}

.results .eyebrow {
  color: #fff;
  font-size: .86rem;
}

.results-closing {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  margin: 48px 0 0;
  text-align: center;
  color: #fff;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.about-photo:before {
  display: none;
}

.about-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 650px;
  box-sizing: border-box;
  border: 2px solid var(--pink);
  padding: 8px;
}

.about {
  align-items: center;
  padding-bottom: 90px;
}

.about-photo {
  align-self: center;
}

.about-copy {
  padding-bottom: 0;
}

.about .eyebrow {
  font-size: .86rem;
}

.faq .section-heading {
  display: block;
  text-align: center;
}

.faq .section-heading .eyebrow {
  font-size: .86rem;
}

.faq .section-heading h2 {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.faq-list {
  max-width: 100%;
  margin: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.faq-item p {
  max-width: 900px;
  margin: 0;
  color: #615d5d;
}

.contact .eyebrow {
  font-size: .86rem;
}

.site-header .brand {
  width: 250px;
}

.site-header .brand img {
  width: 246px;
}

.site-header nav {
  display: none;
}

.site-header .menu-button {
  display: block;
}

.site-header nav.open {
  display: flex;
  position: absolute;
  top: 92px;
  right: max(28px, calc((100vw - var(--max)) / 2));
  left: auto;
  min-width: 300px;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 24px 28px;
  background: #000;
  border: 1px solid #333;
}

.hero {
  min-height: 0;
  padding-top: 30px;
  padding-bottom: 22px;
  align-items: center;
  grid-template-columns: 1fr;
}

.hero-copy {
  padding-top: 20px;
  padding-right: 0;
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.hero-copy .eyebrow,
.hero-copy .hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-isotype {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  padding: 8px 0 10px;
}

.hero-isotype img {
  width: min(175px, 17vw);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(229,81,131,.18));
}

@media (max-width: 600px) {
  section[id] {
    scroll-margin-top: 76px;
  }
  .site-header .brand {
    width: 190px;
  }

  .site-header .brand img {
    width: 186px;
  }

  .site-header nav.open {
    top: 76px;
    right: 0;
    left: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 22px;
    padding-bottom: 20px;
    display: block;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-isotype {
    padding: 14px 0 24px;
  }

  .hero-isotype img {
    width: min(170px, 44vw);
  }
}

@media (min-width: 601px) {
  html[lang="es"] .hero-copy {
    padding-block: 14px;
  }

  html[lang="es"] .hero-isotype {
    padding-top: 14px;
  }

  html[lang="es"] .hero-isotype img {
    width: min(155px, 15vw);
  }
}

.statement {
  text-transform: none;
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
}

.statement strong,
.statement em {
  text-transform: uppercase;
}

.statement .statement-emphasis {
  font-style: italic;
  font-weight: 800;
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.language-switcher a {
  color: #a8a8a8;
  text-decoration: none;
  transition: color .2s ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.active {
  color: var(--pink);
}

.language-switcher a + a::before {
  content: "·";
  margin-right: 8px;
  color: #555;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.legal-page {
  background: #fff;
  color: #000;
  padding: 90px max(28px, calc((100vw - 920px) / 2)) 110px;
}

.legal-page h1 {
  margin: 0 0 38px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.legal-page h2 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.legal-page p,
.legal-page li {
  max-width: 820px;
}

.legal-page a {
  color: #000;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-meta {
  padding: 20px 24px;
  border-left: 4px solid var(--pink);
  background: var(--soft);
}

@media (max-width: 600px) {
  .site-header {
    padding-inline: 16px;
  }

  .site-header .brand {
    width: 150px;
  }

  .site-header .brand img {
    width: 146px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switcher {
    gap: 5px;
    font-size: .62rem;
  }

  .language-switcher a + a::before {
    margin-right: 5px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    padding-top: 65px;
    padding-bottom: 80px;
  }
}

.statement {
  font-weight: 800;
}

.statement em {
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 400;
}

.problem .section-heading {
  display: block;
  text-align: center;
}

.problem .section-heading .eyebrow {
  font-size: .86rem;
}

.problem .section-heading h2 {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.solution .section-heading {
  display: block;
  text-align: center;
}

.solution .section-heading .eyebrow {
  font-size: .86rem;
}

.solution .section-heading h2 {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.process .section-heading {
  display: block;
  text-align: center;
}

.process .section-heading .eyebrow {
  font-size: .86rem;
}

.process .section-heading h2 {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.plans .section-heading {
  display: block;
  text-align: center;
}

.plans .section-heading .eyebrow {
  font-size: .86rem;
}

.plans .section-heading h2 {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.process .step-icon {
  width: 42px;
  height: 42px;
  align-self: center;
  justify-self: end;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Keep the complete four-step process visible on a standard desktop viewport. */
@media (min-width: 901px) {
  .process.section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .process .section-heading {
    margin-bottom: 28px;
  }

  .process .section-heading .eyebrow {
    margin-bottom: 10px;
  }

  .process .section-heading h2 {
    font-size: clamp(2.7rem, 4.4vw, 4rem);
    line-height: .98;
  }

  .process .steps li {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .process .steps h3 {
    font-size: 1.38rem;
  }

  .process .steps p {
    font-size: .95rem;
    line-height: 1.45;
  }

  .process .step-icon {
    width: 34px;
    height: 34px;
  }
}

.solution .signature-line {
  width: 100%;
  max-width: none;
  margin: 48px auto 0;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: var(--pink);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .solution .signature-line {
    white-space: normal;
  }

  .results-list {
    margin-top: 0;
  }

  .results-closing {
    white-space: normal;
  }

  .process .step-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 600px) {
  .process .step-icon {
    display: none;
  }
}

.hero {
  min-height: calc(100svh - 92px);
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 86px max(56px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  position: relative;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px solid var(--pink);
  pointer-events: none;
}

.hero-copy {
  padding: 48px 32px;
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: auto;
}

.hero .eyebrow {
  font-size: .86rem;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: .9;
  letter-spacing: -.065em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 1100px;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 36px auto 0;
  color: #dedada;
}

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

.site-header,
footer {
  background: #000;
}

.site-header nav {
  background: #000;
}

.brand {
  width: 235px;
  height: 74px;
}

/* Final hero composition: centered, complete and without the decorative frame. */
.hero {
  min-height: 0;
  padding: 30px max(28px, calc((100vw - 1180px) / 2)) 22px;
}

.hero::before {
  display: none;
}

.hero-copy {
  padding: 20px 0;
}

.hero-isotype {
  padding: 18px 0 10px;
}

.hero-isotype img {
  width: min(165px, 16vw);
}

.brand img {
  width: 225px;
  height: auto;
}

@media (max-width: 900px) {
  .hero { padding: 64px 48px; }
  .hero-copy { padding: 42px 24px; }
}

@media (max-width: 600px) {
  .brand { width: 180px; height: 62px; }
  .brand img { width: 174px; }
  .hero {
    padding: 58px 30px;
    min-height: calc(100svh - 76px);
  }
  .hero::before { inset: 14px; border-width: 1px; }
  .hero-copy { padding: 28px 10px; }
  .hero h1 { font-size: 3.25rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: center; flex-direction: column; }

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

  .results-list {
    margin-top: 0;
  }

  .results-closing {
    margin-top: 12px;
    font-size: 1.08rem;
    line-height: 1.55;
    white-space: normal;
  }

  /* Compact the long card sections without sacrificing mobile readability. */
  .solution.section,
  .plans.section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .solution .section-heading,
  .plans .section-heading {
    margin-bottom: 30px;
  }

  .benefit-grid article {
    padding: 20px 22px;
  }

  .benefit-grid article > span {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
  }

  .benefit-grid h3 {
    margin: 14px 0 7px;
    font-size: 1.18rem;
  }

  .benefit-grid p {
    margin: 0;
    line-height: 1.5;
  }

  .solution .signature-line {
    margin-top: 30px;
    font-size: 1.12rem;
    line-height: 1.5;
  }

  .plan-grid {
    gap: 18px;
  }

  .plan-card {
    padding: 22px 20px;
  }

  .plan-label,
  .plan-card h3 {
    min-height: 0;
  }

  .plan-label {
    margin: 0 0 12px;
  }

  .plan-card h3 {
    margin: 0;
    font-size: 1.35rem;
  }

  .price {
    margin: 18px 0;
  }

  .price strong {
    font-size: 2.15rem;
  }

  .plan-card li {
    padding: 8px 0;
    line-height: 1.45;
  }

  .plans-note {
    margin-top: 22px;
  }
}
