:root {
  --bg: #f7f4ea;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-2: rgba(255, 255, 255, 0.96);
  --text: #141414;
  --muted: #656565;
  --line: rgba(201, 169, 110, 0.24);
  --gold: #d8b448;
  --gold-soft: rgba(216, 180, 72, 0.12);
  --shadow: 0 22px 60px rgba(35, 30, 15, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top left, rgba(216, 180, 72, 0.10), transparent 32%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.7), transparent 24%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 90px 0; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  backdrop-filter: blur(14px);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(20,20,20,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20,20,20,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
}
.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.22;
}
.orb-1 { width: 420px; height: 420px; background: #f1d46f; top: 80px; left: -100px; }
.orb-2 { width: 320px; height: 320px; background: #ffffff; right: -40px; top: 240px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,234,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20,20,20,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand strong { color: var(--text); font-weight: 800; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #141414;
  background: linear-gradient(135deg, #f7dc72, #d8b448);
  box-shadow: 0 10px 30px rgba(216, 180, 72, 0.24);
}
nav { display: flex; gap: 28px; color: #4d4d4d; }
nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, #f7dc72, #d8b448);
  color: #141414;
  box-shadow: 0 16px 40px rgba(216, 180, 72, 0.20);
}
.btn-ghost {
  border-color: rgba(20,20,20,0.10);
  color: var(--text);
  background: rgba(255,255,255,0.72);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
  padding: 72px 0 50px;
}
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-soft);
  color: #8b6b12;
  border: 1px solid rgba(216, 180, 72, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}
.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 62ch;
  margin: 24px 0 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
}
.hero-points li::before {
  content: '•';
  color: var(--gold);
  margin-right: 8px;
}
.hero-visual {
  padding: 18px;
}
.hero-visual img { border-radius: 18px; }

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 20px 0 0;
}
.stat { padding: 24px; }
.stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.stat span { color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.split-section h2,
.section-head h2,
.cta-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.split-section p,
.section-head p,
.cta-panel p { color: var(--muted); }
.authority-box { padding: 28px; }
.authority-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
}
.authority-row + .authority-row { border-top: 1px solid rgba(20,20,20,0.08); }
.authority-row h3 { margin: 0 0 6px; font-size: 1.05rem; }
.authority-row p { margin: 0; }
.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7dc72, #d8b448);
  margin-top: 9px;
  flex: 0 0 auto;
}

.section-head.center {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}
.benefits-grid,
.process-grid,
.showcase-grid {
  display: grid;
  gap: 20px;
}
.benefits-grid { grid-template-columns: repeat(3, 1fr); }
.benefit { padding: 28px; }
.icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: #8b6b12;
  border: 1px solid rgba(216, 180, 72, 0.20);
  font-weight: 800;
  margin-bottom: 18px;
}
.benefit h3,
.process h3,
.showcase h3 { margin: 0 0 10px; font-size: 1.15rem; }
.benefit p,
.process p,
.showcase p { color: var(--muted); margin: 0; }

.before-after .chart-box { padding: 18px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 0 0 12px;
  color: var(--muted);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.showcase-grid { grid-template-columns: repeat(3, 1fr); }
.showcase { overflow: hidden; }
.showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(20,20,20,0.06);
}
.showcase-copy { padding: 22px; }

.process-grid { grid-template-columns: repeat(3, 1fr); }
.process {
  padding: 26px;
}
.process span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 800;
  color: #0d0d0d;
  background: linear-gradient(135deg, #f7dc72, #d8b448);
}

.cta-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-footer {
  padding: 26px 0 100px;
  color: var(--muted);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(20,20,20,0.08);
  padding-top: 22px;
}

@media (max-width: 980px) {
  nav { display: none; }
  .small-hide { display: none; }
  .hero,
  .split-section,
  .cta-panel,
  .benefits-grid,
  .showcase-grid,
  .process-grid,
  .proof-bar {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 48px; }
  .hero h1 { max-width: none; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { padding: 12px; }
  .footer-wrap { flex-direction: column; }
}


.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
  border: 1px solid rgba(0,0,0,0.04);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
}
.whatsapp-icon {
  font-size: 1.2rem;
  line-height: 1;
}
.whatsapp-label {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-float {
    left: 16px;
    right: 16px;
    bottom: 14px;
    justify-content: center;
    padding: 16px 18px;
  }
}
