:root {
  --navy: #071d49;
  --navy-2: #0b285f;
  --navy-3: #14356d;
  --gold: #c99319;
  --gold-light: #e5bd57;
  --ink: #17213a;
  --muted: #687188;
  --line: #dfe3ea;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --radius: 1.25rem;
  --shadow: 0 1.5rem 4rem rgba(7, 29, 73, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.container {
  width: min(73rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-200%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(7, 29, 73, 0.08);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(1rem);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.7rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--navy);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: inset 0 -0.22rem 0 var(--gold);
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.desktop-nav a {
  position: relative;
  color: #3d4860;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

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

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

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201, 147, 25, 0.45);
  outline-offset: 3px;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1.1rem;
  background: var(--navy);
  color: white;
  font-size: 0.85rem;
}

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 0.8rem 2rem rgba(7, 29, 73, 0.2);
}

.button-primary:hover {
  background: var(--navy-2);
  box-shadow: 0 1rem 2.5rem rgba(7, 29, 73, 0.26);
}

.button svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  background:
    radial-gradient(circle at 81% 16%, rgba(201, 147, 25, 0.11), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.hero::after {
  position: absolute;
  top: 5rem;
  right: -7rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(201, 147, 25, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow span {
  width: 2.3rem;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 5.4vw, 5.1rem);
}

h1 em {
  position: relative;
  color: var(--gold);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  opacity: 0.35;
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.15rem, 4.1vw, 3.8rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: #4d586f;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-note {
  margin: 1rem 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.control-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(201, 147, 25, 0.45);
  border-radius: 1.7rem;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: white;
  transform: rotate(1.5deg);
}

.control-card::before {
  position: absolute;
  right: -0.7rem;
  bottom: -0.7rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 147, 25, 0.35);
  border-radius: inherit;
  content: "";
}

.control-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0.2rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0.28rem rgba(201, 147, 25, 0.13);
}

.monogram {
  display: grid;
  width: 2.1rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  color: white;
  font-weight: 900;
}

.control-lines {
  display: flex;
  height: 4.4rem;
  align-items: end;
  gap: 0.45rem;
  padding: 0.4rem 0.2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.control-lines span {
  flex: 1;
  height: 40%;
  border-radius: 0.3rem 0.3rem 0 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  opacity: 0.8;
}

.control-lines span:nth-child(2) { height: 62%; }
.control-lines span:nth-child(3) { height: 52%; }
.control-lines span:nth-child(4) { height: 83%; }
.control-lines span:nth-child(5) { height: 100%; }

.control-list {
  padding: 0.55rem 0;
}

.control-list div {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.82rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.control-list span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 850;
}

.control-list strong {
  font-size: 0.95rem;
}

.control-list i {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-style: normal;
}

.control-card > p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

.trust-strip span {
  position: relative;
  padding: 1.4rem 1rem 1.4rem 1.5rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.trust-strip span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-light {
  background: var(--soft);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.split-intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.intro-copy > p,
.section-heading > p,
.process-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.question-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.question-grid span {
  min-height: 5rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: white;
  color: var(--navy);
  font-weight: 750;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.6fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.45rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 17rem;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(201, 147, 25, 0.55);
  box-shadow: 0 1.2rem 2.4rem rgba(7, 29, 73, 0.08);
  transform: translateY(-4px);
}

.service-card::after {
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(201, 147, 25, 0.2);
  border-radius: 50%;
  content: "";
}

.service-number {
  display: block;
  margin-bottom: 3.7rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  max-width: 15rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-featured {
  border-color: var(--navy);
  background: var(--navy);
}

.service-featured h3,
.service-featured p {
  color: white;
}

.service-featured p {
  opacity: 0.7;
}

.service-tag {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  padding: 0.32rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.66rem;
  font-weight: 750;
}

.service-cta-card {
  border-color: rgba(201, 147, 25, 0.55);
  background: #fffcf5;
}

.service-cta-card a {
  position: absolute;
  right: 1.6rem;
  bottom: 1.25rem;
  left: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 147, 25, 0.35);
  padding-top: 0.8rem;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.service-cta-card a span {
  color: var(--gold);
  font-size: 1.1rem;
}

.fit-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.fit-section::before {
  position: absolute;
  top: -16rem;
  left: -10rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(201, 147, 25, 0.17);
  border-radius: 50%;
  content: "";
}

.fit-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.fit-copy h2,
.fit-copy p {
  color: white;
}

.fit-copy p:not(.section-kicker) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.66);
}

.section-kicker-gold {
  color: var(--gold-light);
}

.button-gold {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0.8rem 2rem rgba(201, 147, 25, 0.18);
}

.button-gold:hover {
  background: var(--gold-light);
}

.fit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 720;
}

.fit-list span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 15rem;
  padding: 1.8rem 1.5rem 1.8rem 0;
  border-top: 1px solid var(--line);
}

.process-list li + li {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}

.process-list span {
  display: block;
  margin-bottom: 3rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
  font-size: 0.9rem;
}

.personal-section {
  background: var(--soft);
}

.personal-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.personal-sign {
  position: relative;
  display: flex;
  min-height: 31rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 2.5rem 2.5rem;
  box-shadow: var(--shadow);
}

.personal-sign::after {
  position: absolute;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(201, 147, 25, 0.6);
  border-radius: 50%;
  content: "";
}

.personal-sign > span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.personal-sign small {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.personal-copy h2 {
  max-width: 14ch;
}

.personal-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.personal-points article {
  min-height: 11rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.personal-points h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.personal-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  padding: clamp(5.5rem, 11vw, 10rem) 0;
  background: var(--navy);
  text-align: center;
}

.final-cta-inner {
  max-width: 55rem;
}

.final-cta h2 {
  margin-inline: auto;
  color: white;
}

.final-cta-inner > p:not(.section-kicker) {
  max-width: 41rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.button-large {
  min-height: 3.8rem;
  padding-inline: 1.8rem;
}

.contact-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.contact-meta a {
  color: var(--gold-light);
  text-underline-offset: 0.25rem;
}

.site-footer {
  padding: 1.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #04142f;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer p,
.site-footer > span {
  margin: 0;
  font-size: 0.75rem;
}

.brand-footer .brand-copy strong {
  color: white;
}

.mobile-whatsapp {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 58rem) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .split-intro,
  .fit-grid,
  .personal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 47rem;
  }

  .control-card {
    width: min(34rem, 100%);
    margin-inline: auto;
    transform: none;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading h2 {
    max-width: 17ch;
  }

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

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

  .process-list li:nth-child(3) {
    border-left: 0;
  }

  .personal-sign {
    min-height: 22rem;
  }
}

@media (max-width: 40rem) {
  body {
    padding-bottom: 4.7rem;
  }

  .container {
    width: min(100% - 1.5rem, 73rem);
  }

  .site-header .button-small,
  .brand-copy small {
    display: none;
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .button-primary {
    width: 100%;
  }

  .hero-note {
    margin-left: 0;
  }

  .control-card {
    padding: 1rem;
  }

  .control-list div {
    grid-template-columns: 1.7rem 1fr auto;
    gap: 0.45rem;
  }

  .control-list strong {
    font-size: 0.84rem;
  }

  .trust-strip {
    margin-top: 4rem;
  }

  .trust-strip span {
    padding: 1rem 0.3rem 1rem 0.9rem;
    font-size: 0.74rem;
    text-align: left;
  }

  .question-grid,
  .service-grid,
  .process-list,
  .personal-points {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 15rem;
  }

  .service-number {
    margin-bottom: 2.8rem;
  }

  .fit-list li {
    grid-template-columns: 2rem 1fr;
  }

  .button-gold {
    width: 100%;
  }

  .process-list li {
    min-height: auto;
    border-left: 0 !important;
    padding: 1.5rem 0;
  }

  .process-list span {
    margin-bottom: 1.5rem;
  }

  .personal-points {
    border-left: 0;
  }

  .personal-points article {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .contact-meta {
    align-items: center;
    flex-direction: column;
    gap: 0.45rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    z-index: 50;
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0.8rem 2.4rem rgba(7, 29, 73, 0.27);
    color: var(--navy);
    font-weight: 900;
    text-decoration: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
