:root {
  --black: #050505;
  --black-2: #111111;
  --gray: #6e6e6e;
  --muted: #f6f1e8;
  --white: #ffffff;
  --gold: #d9aa38;
  --gold-2: #f3d37b;
  --line: rgba(217, 170, 56, .28);
  --shadow: 0 20px 60px rgba(0, 0, 0, .18);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 10px;
  z-index: 99;
}
.skip:focus { left: 8px; }
.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(243, 211, 123, .42);
  box-shadow: 0 0 0 4px rgba(217,170,56,.08);
  flex: 0 0 54px;
}
.brand-logo img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}
.brand-text { min-width: 0; }
.brand strong { display: block; font-size: 1.05rem; line-height: 1.1; }
.brand small { display: block; color: var(--gold-2); font-size: .78rem; }
.main-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  font-size: .95rem;
}
.main-nav a:hover { color: var(--gold-2); }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(217, 170, 56, .25);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 44px; padding: 10px 16px; font-size: .9rem; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.section { padding: 92px 0; }
.section-dark {
  background: radial-gradient(circle at top left, rgba(217,170,56,.16), transparent 34%), var(--black);
  color: var(--white);
}
.section-light { background: var(--white); }
.section-muted { background: var(--muted); }
.hero { padding: 96px 0 88px; position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -160px;
  top: 120px;
  background: radial-gradient(circle, rgba(217,170,56,.28), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.07em;
  margin-bottom: 24px;
}
h1 span { color: var(--gold-2); display: inline-block; white-space: nowrap; }
h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}
h3 { line-height: 1.15; }
.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.25rem;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.offer-rule {
  max-width: 760px;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
  margin-bottom: 22px;
}
.price-card small, .price-card span { display: block; font-weight: 800; }
.price-card strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5.1rem);
  line-height: .9;
  letter-spacing: -.08em;
  margin: 8px 0;
}
.hero-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.hero-checks li { padding-left: 28px; position: relative; color: rgba(255,255,255,.82); }
.hero-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 900; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 4;
}
.stats article {
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
}
.stats strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--black);
  letter-spacing: -.05em;
}
.stats span { display: block; margin-top: 8px; color: var(--gray); font-weight: 700; }
.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.two-col.reverse { grid-template-columns: 1fr 1fr; align-items: center; }
.text-block p, .lead { font-size: 1.1rem; color: #333; }
.section-dark .lead, .section-dark .section-head p { color: rgba(255,255,255,.72); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card, .feature-card, .service-grid article, .unit-card, .review-box, .growth-card {
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.value-card span {
  display: inline-block;
  color: var(--black);
  background: var(--gold-2);
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 900;
  margin-bottom: 14px;
}
.value-card h3, .feature-card h3, .service-grid h3, .unit-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.value-card p, .feature-card p, .service-grid p, .unit-card p, .unit-card small { color: #4c4c4c; }
.growth-card { background: var(--black); color: var(--white); border-color: var(--line); }
.growth-card p { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { color: #4c4c4c; font-size: 1.08rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.feature-card h3 { color: var(--gold-2); }
.feature-card p { color: rgba(255,255,255,.76); }
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.timeline article {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 22px;
  position: relative;
}
.timeline time {
  display: inline-block;
  font-weight: 950;
  color: var(--black);
  background: var(--gold-2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.timeline p { margin-bottom: 0; color: #444; }
.founder-note {
  margin-top: 24px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--black);
  color: rgba(255,255,255,.84);
  border: 1px solid var(--line);
}
.founder-note p { margin: 0; }
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.unit-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.unit-card {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}
.unit-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: #111;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.unit-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.unit-card h3 { color: var(--black); }
.unit-card p { font-weight: 800; margin-bottom: 12px; }
.unit-card small { display: block; margin-bottom: 18px; }
.unit-card a {
  margin-top: auto;
  color: var(--black);
  font-weight: 950;
  border-bottom: 2px solid var(--gold);
  width: fit-content;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
}
.review-card span {
  display: block;
  color: #d6a400;
  letter-spacing: .1em;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.review-card blockquote {
  margin: 0 0 18px;
  color: #333;
  font-weight: 650;
}
.review-card p { margin: 0; }
.review-card strong { display: block; color: var(--black); }
.review-card small { display: block; color: var(--gray); font-weight: 800; }
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  border-radius: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.cta-panel h2 { max-width: 760px; }
.cta-panel p { color: rgba(255,255,255,.78); max-width: 700px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.faq-list { display: grid; gap: 12px; max-width: 920px; }
details {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px 20px;
  background: var(--white);
}
summary { cursor: pointer; font-weight: 900; }
details p { color: #444; margin: 12px 0 0; }
.site-footer {
  padding: 56px 0 28px;
  background: var(--black);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 42px;
}
.footer-grid p, .footer-bottom { color: rgba(255,255,255,.68); }
.footer-grid h3 { color: var(--gold-2); }
.footer-grid a { display: block; color: rgba(255,255,255,.82); margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-brand { margin-bottom: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 34px;
  padding-top: 24px;
  font-size: .92rem;
}
.footer-note { color: rgba(255,255,255,.48); }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #25D366;
  color: #062c16;
  font-weight: 950;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
@media (max-width: 980px) {
  .header-grid { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero-grid, .two-col, .two-col.reverse, .cta-panel, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid, .grid-4, .grid-3, .units-grid, .service-grid, .timeline, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0; }
  .hero-grid { gap: 28px; }
  .stats-grid, .grid-4, .grid-3, .units-grid, .service-grid, .timeline, .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { margin-top: -28px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .btn-small { display: none; }
  h1 { font-size: 3.35rem; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { left: 14px; right: 14px; text-align: center; }
}
