:root {
  --bg: #0d1117;
  --bg-soft: #151d27;
  --panel: rgba(16, 21, 29, 0.8);
  --panel-strong: #111820;
  --text: #f5efe4;
  --muted: #c6b89f;
  --line: rgba(239, 215, 165, 0.18);
  --gold: #dfb86c;
  --gold-strong: #f0cb86;
  --gold-deep: #8d6428;
  --white: #fffdf8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --card-pad: 32px;
  --section-space: 96px;
  --section-space-tablet: 72px;
  --section-space-mobile: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(223, 184, 108, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(141, 100, 40, 0.22), transparent 24%),
    linear-gradient(180deg, #091017 0%, #0d1117 42%, #121921 100%);
  padding-bottom: 40px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 78%);
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.page-shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 24px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 13, 18, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-strong), var(--gold-deep));
  color: #201505;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.section-heading h2,
.hero h1,
.hero-card h2,
.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid rgba(240, 203, 134, 0.4);
  color: var(--white);
  background: linear-gradient(135deg, rgba(223, 184, 108, 0.24), rgba(223, 184, 108, 0.08));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(460px, 0.84fr);
  gap: 0;
  align-items: start;
  padding: 52px 0 24px;
}

.hero-copy {
  display: grid;
  align-content: start;
  max-width: 720px;
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(2.5rem, 3.2vw, 3.4rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(245, 239, 228, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

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

.button-primary {
  color: #221605;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 16px 34px rgba(223, 184, 108, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.hero-badges {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  max-width: 62ch;
}

.hero-badges li {
  position: relative;
  padding-left: 24px;
  color: rgba(245, 239, 228, 0.8);
  line-height: 1.48;
}

.hero-badges li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(223, 184, 108, 0.12);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 28px;
  border: 1px solid rgba(240, 203, 134, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    linear-gradient(160deg, rgba(223, 184, 108, 0.08), rgba(17, 24, 32, 0.95) 42%);
  box-shadow: var(--shadow);
  max-width: 500px;
  justify-self: start;
}

.hero-portrait-wrap {
  position: relative;
  width: min(100%, 220px);
  margin: 0 auto 18px;
  padding: 9px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(240, 203, 134, 0.42), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.94;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 22px;
}

.card-shine {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 203, 134, 0.28), transparent 70%);
}

.card-kicker {
  position: relative;
  margin: 0 0 6px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.hero-card h2 {
  position: relative;
  margin: 0 0 20px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.12rem, 1.14vw, 1.3rem);
  line-height: 0.96;
  text-align: center;
}

.metric-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-list div:last-child {
  grid-column: 1 / -1;
}

.metric-list div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(4, 7, 12, 0.26);
}

.metric-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-strong);
  font-size: 1.05rem;
}

.metric-list span,
.service-card p,
.benefit-list p,
.process-grid p,
.faq p,
.footer p {
  color: rgba(245, 239, 228, 0.72);
  line-height: 1.58;
}

.proof {
  padding: 20px 0 0;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.proof-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: var(--section-space) 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 0.98;
  text-wrap: balance;
}

.service-grid,
.process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.process-grid article,
.benefit-list article,
.quote-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.service-card {
  min-height: 220px;
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(223, 184, 108, 0.2), rgba(223, 184, 108, 0.04));
  color: var(--gold-strong);
  font-weight: 800;
}

.service-card h3,
.benefit-list h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.service-card p {
  margin: 0;
}

.contrast-section {
  position: relative;
  overflow: hidden;
  margin-top: var(--section-space);
  padding: 48px 40px 40px;
  border-radius: 34px;
}

.contrast-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(223, 184, 108, 0.1), rgba(255, 255, 255, 0.02));
}

.contrast-section .section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

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

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-list article,
.quote-card {
  padding: 24px 24px;
}

.benefit-list h3 {
  margin: 0 0 10px;
}

.benefit-list p {
  margin: 0;
  max-width: 46ch;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(223, 184, 108, 0.12), rgba(17, 24, 32, 0.95)),
    var(--panel-strong);
  max-width: 100%;
}

.quote-card p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  max-width: 20ch;
  font-size: clamp(1.52rem, 1.75vw, 2rem);
  line-height: 1.05;
}

.quote-card span {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
  max-width: 38ch;
}

.process .section-heading {
  max-width: 820px;
}

.process-grid article {
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
}

.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #261704;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 340px);
  align-items: center;
  gap: 28px;
  margin-top: var(--section-space);
  padding: 36px 36px;
  border: 1px solid rgba(240, 203, 134, 0.28);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(223, 184, 108, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(240, 203, 134, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(223, 184, 108, 0.12), rgba(18, 25, 33, 0.94));
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 203, 134, 0.16), transparent 70%);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-banner h2 {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(1.64rem, 2vw, 2.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.cta-banner__text {
  max-width: 56ch;
  margin: 14px 0 0;
  color: rgba(245, 239, 228, 0.76);
  line-height: 1.56;
}

.cta-banner__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 8px 10px;
  margin-top: 20px;
}

.cta-banner__points span {
  padding: 9px 13px;
  border: 1px solid rgba(240, 203, 134, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.84rem;
}

.cta-banner__action {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: stretch;
  align-self: center;
  width: 100%;
}

.cta-banner__card {
  width: 100%;
  max-width: 340px;
  padding: 20px 22px;
  border: 1px solid rgba(240, 203, 134, 0.16);
  border-radius: 22px;
  background: rgba(9, 13, 18, 0.46);
  backdrop-filter: blur(10px);
}

.cta-banner__card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-banner__card p {
  margin: 0;
  color: rgba(245, 239, 228, 0.72);
  line-height: 1.58;
}

.cta-banner .button-primary {
  width: 100%;
  max-width: 340px;
  min-width: 0;
  min-height: 54px;
  box-shadow: 0 18px 42px rgba(223, 184, 108, 0.2);
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  line-height: 1.45;
  padding-right: 28px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
  padding: 72px 0 16px;
}

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

.footer-links a {
  color: var(--muted);
}

.whatsapp-link,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon,
.whatsapp-icon,
.whatsapp-bar__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
}

.footer-copy {
  margin: 0;
  font-size: 0.92rem;
}

.footer > div:first-child p {
  margin: 6px 0 0;
}

.footer-copy,
.footer-credit {
  align-self: start;
}

.footer-copy {
  grid-column: 1;
}

.footer-credit {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 12px 16px;
  border: 1px solid rgba(240, 203, 134, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 239, 228, 0.9);
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-credit span {
  color: rgba(245, 239, 228, 0.88);
}

.footer-credit img {
  display: block;
  height: 30px;
  width: auto;
  padding: 6px 10px;
  border-radius: 12px;
  background: #f7f8f5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.whatsapp-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(28px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.whatsapp-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 0s;
}

.whatsapp-bar__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(240, 203, 134, 0.18);
  border-radius: 24px;
  background: rgba(10, 15, 21, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.whatsapp-bar__copy {
  display: grid;
  gap: 6px;
}

.whatsapp-bar__copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.whatsapp-bar__copy p {
  margin: 0;
  color: rgba(245, 239, 228, 0.74);
  font-size: 0.95rem;
  line-height: 1.5;
}

.whatsapp-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #221605;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border: 1px solid rgba(240, 203, 134, 0.35);
  box-shadow: 0 16px 34px rgba(223, 184, 108, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --card-pad: 24px;
  }

  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding-top: var(--section-space-tablet);
  }

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

  .topbar {
    padding: 14px 16px;
    border-radius: 28px;
  }

  .nav {
    display: none;
  }

  .hero,
  .benefit-layout,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding: 40px 0 20px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-card {
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-portrait-wrap {
    width: min(100%, 320px);
  }

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

  .metric-list div:last-child {
    grid-column: auto;
  }

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

  .service-card,
  .process-grid article,
  .benefit-list article,
  .quote-card {
    min-height: auto;
  }

  .contrast-section {
    margin-top: var(--section-space-tablet);
    padding: 36px 28px 32px;
    border-radius: 30px;
  }

  .contrast-section .section-heading,
  .process .section-heading {
    max-width: 760px;
  }

  .contrast-section .section-heading h2,
  .quote-card p {
    max-width: 100%;
  }

  .benefit-layout {
    gap: 16px;
  }

  .quote-card {
    max-width: 100%;
    justify-self: stretch;
  }

  .cta-banner {
    gap: 24px;
    margin-top: var(--section-space-tablet);
    padding: 28px 24px;
  }

  .cta-banner__action {
    justify-items: start;
  }

  .cta-banner h2 {
    max-width: 100%;
  }

  .cta-banner__points {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .footer {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

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

  .footer-copy,
  .footer-credit {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --card-pad: 22px;
  }

  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding-top: var(--section-space-mobile);
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .topbar {
    position: static;
    margin-top: 12px;
    padding: 14px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    gap: 24px;
    padding: 30px 0 16px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.1rem);
    line-height: 0.9;
  }

  .hero-text {
    margin-top: 16px;
  }

  .hero-card,
  .cta-banner,
  .contrast-section,
  .service-card,
  .benefit-list article,
  .quote-card,
  .process-grid article,
  .faq-list details {
    border-radius: 22px;
  }

  .hero-card,
  .service-card,
  .benefit-list article,
  .quote-card,
  .process-grid article {
    padding: var(--card-pad);
  }

  .metric-list div {
    padding: 14px;
  }

  .proof-strip {
    gap: 10px;
  }

  .proof-strip span {
    padding: 10px 14px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .button,
  .whatsapp-bar__button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-badges {
    margin-top: 24px;
    max-width: 100%;
  }

  .whatsapp-bar {
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  }

  .whatsapp-bar__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px;
    text-align: center;
  }

  .whatsapp-bar__copy {
    justify-items: center;
  }

  .whatsapp-bar__button {
    margin: 0 auto;
  }

  .contrast-section {
    margin-top: var(--section-space-mobile);
    padding: 32px 20px 28px;
  }

  .cta-banner {
    margin-top: var(--section-space-mobile);
    padding: 24px 20px;
    gap: 20px;
  }

  .cta-banner__points {
    grid-template-columns: 1fr;
  }

  .cta-banner .button-primary,
  .cta-banner__card {
    width: 100%;
    min-width: 0;
  }

  .faq-list details {
    padding: 20px 22px;
  }

  .footer {
    gap: 18px;
    padding-top: 44px;
  }

  .footer-links {
    gap: 14px 18px;
  }

  .footer-credit {
    width: 100%;
    justify-content: center;
  }
}
