:root {
  --bg: #05020a;
  --bg-soft: #0d0616;
  --panel: #14091f;
  --panel-light: #1b0d2b;
  --text: #fff8ee;
  --muted: #c4b7ca;
  --gold: #d9a946;
  --gold-soft: #f2d57d;
  --green: #34c759;
  --green-dark: #159139;
  --line: rgba(242, 213, 125, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 54px 20px 86px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 16%, rgba(100, 42, 148, 0.6), transparent 34%),
    radial-gradient(circle at 50% 72%, rgba(217, 169, 70, 0.13), transparent 26%),
    linear-gradient(180deg, #150820 0%, #05020a 82%);
}

.cosmic-layer {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(242, 213, 125, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px);
  background-position: 0 0, 22px 28px;
  background-size: 84px 84px, 116px 116px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
}

.portrait-wrap {
  width: clamp(164px, 24vw, 250px);
  aspect-ratio: 1;
  margin: 0 auto 34px;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-soft), #8c5a19 48%, var(--gold));
  box-shadow: 0 0 72px rgba(217, 169, 70, 0.32);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin: 0 auto 28px;
  font-size: clamp(2.25rem, 6.2vw, 4.9rem);
  line-height: 1.12;
}

h1 em {
  color: var(--gold-soft);
  font-style: italic;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 38px rgba(21, 145, 57, 0.35);
}

.button-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.phone-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-soft);
  font-weight: 700;
}

.proof-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
}

.section {
  padding: 88px 0;
  background: var(--bg);
}

.areas {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section h2,
.final-cta h2 {
  margin-bottom: 34px;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.06;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.split h2 {
  text-align: left;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

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

.info-card,
.quote-card,
.trust-list div,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
}

.info-card {
  min-height: 250px;
  padding: 24px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.info-card h3,
.trust-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.08rem;
}

.info-card p,
.trust-list span,
.quote-card blockquote,
.faq-list p,
.footer p,
.final-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.trust,
.faq {
  background:
    radial-gradient(circle at 16% 10%, rgba(217, 169, 70, 0.12), transparent 30%),
    var(--bg-soft);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-list div {
  padding: 22px;
}

.testimonials {
  background: var(--bg);
}

.quote-card {
  margin: 0;
  padding: 26px;
}

.quote-card blockquote {
  margin: 0 0 26px;
  font-size: 1.02rem;
}

.quote-card figcaption {
  color: var(--text);
  font-weight: 800;
}

.quote-card figcaption span {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.final-cta {
  padding: 86px 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 2, 10, 0.18), rgba(5, 2, 10, 0.92)),
    radial-gradient(circle at center, rgba(92, 33, 133, 0.58), transparent 42%),
    var(--panel);
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}

.footer {
  padding: 34px 0;
  text-align: center;
  background: #030106;
  border-top: 1px solid rgba(242, 213, 125, 0.14);
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 auto 16px;
}

.footer-links a {
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer p {
  max-width: 760px;
  margin: 8px auto 0;
  font-size: 0.92rem;
}

.legal-page {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  padding: 76px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(100, 42, 148, 0.5), transparent 34%),
    linear-gradient(180deg, #150820 0%, #05020a 100%);
}

.legal-card {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(2.25rem, 6vw, 4.2rem);
  line-height: 1.05;
}

.legal-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.legal-card strong {
  color: var(--gold-soft);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-soft);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .card-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.five .info-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 44px;
  }

  .split,
  .card-grid.three,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .split h2 {
    text-align: center;
  }

  .split > div:first-child {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 36px 18px 72px;
  }

  .eyebrow,
  .section-kicker {
    letter-spacing: 0.24em;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .button,
  .phone-link {
    width: 100%;
  }

  .card-grid.five {
    grid-template-columns: 1fr;
  }

  .card-grid.five .info-card:last-child {
    grid-column: auto;
  }

  .section {
    padding: 68px 0;
  }

  .info-card {
    min-height: auto;
  }

  .floating-whatsapp {
    left: 18px;
    right: 18px;
  }

  .legal-page {
    padding: 42px 16px;
  }
}
