:root {
  --navy: #0b1e3f;
  --navy-soft: #13294f;
  --gold: #c9a227;
  --gold-soft: #d9bb59;
  --white: #ffffff;
  --gray-50: #f7f8fb;
  --gray-100: #eceff4;
  --gray-300: #c7d0de;
  --gray-600: #55637c;
  --gray-800: #212b3d;
  --max-width: 1120px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 45px -32px rgba(11, 30, 63, 0.55);
  --shadow-panel: 0 35px 80px -40px rgba(11, 30, 63, 0.5);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--gray-800);
  background:
    radial-gradient(1200px 500px at 80% -200px, rgba(201, 162, 39, 0.16), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 38%, #f7f9fc 100%);
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5.25rem 0;
}

.section-muted {
  background-color: var(--gray-50);
}

.section-head {
  margin-bottom: 2rem;
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 20ch;
}

h3 {
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.35;
}

.lead {
  margin-top: 1rem;
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: var(--gray-600);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: var(--white);
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus-visible {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(11, 30, 63, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--navy);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: var(--font-display);
  color: var(--gold);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.14), rgba(201, 162, 39, 0.05));
}

.brand-text {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  gap: 1.35rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.main-nav a {
  position: relative;
  padding-block: 0.3rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.35s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 32px -24px rgba(11, 30, 63, 0.92);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--navy-soft);
}

.btn-outline {
  border-color: rgba(11, 30, 63, 0.2);
  color: var(--navy);
  background-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  color: var(--navy);
}

.btn-gold {
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #1a1a1a;
  box-shadow: 0 20px 45px -28px rgba(201, 162, 39, 0.9);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  filter: brightness(1.05);
}

.btn-lg {
  min-height: 48px;
  padding: 0.82rem 1.5rem;
}

.header-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 6.2rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: -230px;
  right: -140px;
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.22) 0%, rgba(201, 162, 39, 0) 72%);
}

.hero::after {
  width: 40vw;
  max-width: 560px;
  min-width: 300px;
  height: 1px;
  top: 145px;
  left: 58%;
  transform: rotate(-24deg);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0), rgba(201, 162, 39, 0.7), rgba(201, 162, 39, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
  color: var(--gray-600);
  font-size: 0.94rem;
}

.hero-trust li {
  position: relative;
  padding-left: 1.25rem;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: var(--gold);
}

.hero-panel {
  position: relative;
}

.hero-panel-inner {
  padding: clamp(1.4rem, 2.5vw, 2.15rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(11, 30, 63, 0.98), rgba(20, 45, 86, 0.94)),
    linear-gradient(40deg, rgba(201, 162, 39, 0.25), transparent 55%);
  color: var(--white);
  box-shadow: var(--shadow-panel);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.panel-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-panel h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  max-width: 18ch;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 1rem;
  max-width: 35ch;
}

.hero-panel-highlights {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.95rem;
}

.hero-panel-highlights div {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel-highlights strong {
  display: block;
  font-size: 0.94rem;
  color: var(--gold-soft);
}

.hero-panel-highlights span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card,
.value-card,
.quote-card {
  background-color: var(--white);
  border: 1px solid rgba(11, 30, 63, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.info-card:hover,
.info-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.value-card:hover,
.value-card:focus-within,
.quote-card:hover,
.quote-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 24px 45px -30px rgba(11, 30, 63, 0.5);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.06));
}

.icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
}

.info-card p,
.service-card p,
.value-card p {
  margin-top: 0.6rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.service-card h3 {
  margin-bottom: 0.2rem;
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}

.text-link::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  background-color: var(--gold);
  transform-origin: left;
  transform: scaleX(0.35);
  transition: transform 0.3s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.quote-card {
  padding: 1.35rem 1.25rem;
}

.quote-card p {
  font-size: 1rem;
  color: var(--gray-800);
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 700;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 7%;
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0), rgba(201, 162, 39, 0.9), rgba(201, 162, 39, 0));
}

.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11, 30, 63, 0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  box-shadow: var(--shadow-card);
}

.step-number {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.6);
  background-color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.process-step h3 {
  margin-top: 0.85rem;
}

.process-step p {
  margin-top: 0.5rem;
  color: var(--gray-600);
  font-size: 0.94rem;
}

.cta-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.cta-panel {
  background:
    radial-gradient(circle at 90% 15%, rgba(201, 162, 39, 0.17), transparent 42%),
    linear-gradient(145deg, #0b1e3f 0%, #12284f 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.42);
  padding: clamp(1.5rem, 4vw, 3.1rem);
  box-shadow: var(--shadow-panel);
}

.cta-panel .eyebrow {
  color: var(--gold-soft);
}

.cta-panel h2 {
  color: var(--white);
  max-width: 24ch;
}

.cta-copy {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.cta-panel .btn-gold {
  margin-top: 1.4rem;
}

.cta-points {
  margin-top: 1.3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
}

.cta-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
}

.cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--gold-soft);
}

.faq-list {
  border-top: 1px solid rgba(11, 30, 63, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(11, 30, 63, 0.14);
}

.faq-question {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.faq-question span {
  width: 1.5rem;
  text-align: center;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

.faq-answer p {
  margin: 0 0 1rem;
  color: var(--gray-600);
}

.site-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.6rem;
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.75rem;
}

.footer-copy {
  margin-top: 0.5rem;
  max-width: 42ch;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.77);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
  color: var(--gold-soft);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 150;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 18px 42px -24px rgba(0, 0, 0, 0.85);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 4.8rem;
  }

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

  .four-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

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

@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .brand-text {
    font-size: 0.85rem;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    max-width: 100%;
  }

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

  .four-cols,
  .three-cols {
    grid-template-columns: 1fr;
  }

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

  .cta-points {
    display: grid;
  }

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

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

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
