:root {
  --graphite-1: #1b1a1d;
  --graphite-2: #232227;
  --graphite-3: #34333a;
  --near-black: #131217;
  --gold: #c9a961;
  --gold-light: #e2c98a;
  --gold-dark: #a9793a;
  --light-1: #faf7f2;
  --light-2: #f7f3ec;
  --light-3: #efe8db;
  --heading-dark: #232227;
  --body-1: #6b6255;
  --body-2: #4a4239;
  --wa-green: #25d366;
  --shadow-card: 0 8px 24px rgba(34, 29, 21, 0.07);
  --shadow-elevated: 0 16px 40px rgba(34, 29, 21, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #28272b;
  background: var(--light-1);
  overflow-x: hidden;
}

h1, h2 { font-family: 'Sora', sans-serif; }

a { color: var(--gold); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; }

.section-inner { max-width: 1080px; margin: 0 auto; }

/* WhatsApp button styling */
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  100% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}
@keyframes wa-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 6px 18px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 6px 22px rgba(37, 211, 102, 0.5); }
}
.wa-btn {
  background: linear-gradient(135deg, #1fae57, #25d366, #4ee88a, #25d366, #1fae57);
  background-size: 220% 220%;
  animation: wa-glow 2.4s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  border: none;
  cursor: pointer;
}
.wa-float { animation: wa-pulse 2.2s infinite; }

/* FAQ accordion */
details.faq summary { cursor: pointer; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq .faq-chevron { transition: transform 0.2s ease; }
details.faq[open] .faq-chevron { transform: rotate(180deg); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--graphite-1);
  padding: 14px clamp(16px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.site-header img { height: 52px; width: auto; display: block; }
.header-wa-btn {
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 10px;
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(160deg, #1b1a1d 0%, #232227 50%, #34333a 100%);
  padding: clamp(48px, 7vw, 84px) clamp(16px, 5vw, 64px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 130, 150, 0.22), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.hero h2 {
  color: #cdc4b3;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
  margin: 0 0 28px;
  text-wrap: pretty;
  font-family: 'Manrope', sans-serif;
}
.hero h2 b { color: var(--gold-light); }
.hero-cta {
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 12px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 460px;
}
.hero-badges div div:first-child { color: #fff; font-weight: 700; font-size: 14px; }
.hero-badges div div:last-child { color: #a99e8c; font-size: 13px; }

/* PAIN POINTS */
#pain-points {
  background: linear-gradient(180deg, #f7f3ec, #efe8db);
  padding: clamp(48px, 7vw, 88px) clamp(16px, 5vw, 64px);
}
#pain-points h2 {
  text-align: center;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--heading-dark);
  margin: 0 0 12px;
  text-wrap: pretty;
}
#pain-points > .section-inner > p {
  text-align: center;
  color: var(--body-1);
  font-size: 15.5px;
  max-width: 640px;
  margin: 0 auto 44px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 26px 22px;
}
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #232227, #34333a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-card h3 { font-weight: 700; font-size: 15.5px; color: var(--heading-dark); margin: 0 0 6px; font-family: 'Manrope', sans-serif; }
.pain-card p { font-size: 14px; color: var(--body-1); line-height: 1.5; margin: 0; }
.pain-cta-wrap { text-align: center; margin-top: 40px; }
.pain-cta { font-size: 14.5px; padding: 13px 20px; border-radius: 11px; }

/* QUALIFIER MODAL */
#qualifier-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 14, 12, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
#qualifier-overlay.open { display: flex; }
.qualifier-card {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin: auto;
  background: linear-gradient(160deg, #1b1a1d, #232227 55%, #34333a);
  border: 1px solid rgba(201, 169, 97, 0.45);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.qualifier-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qualifier-card h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 0 0 8px;
  text-align: center;
}
.qualifier-sub {
  color: #b9ae9a;
  font-size: 13.5px;
  text-align: center;
  margin: 0 0 28px;
}
.qualifier-step-title {
  color: #e9e2d3;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 14px;
}
.qualifier-options { display: flex; flex-direction: column; gap: 10px; }
.qualifier-option {
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
}
.qualifier-note { color: #8f8672; font-size: 12px; margin: 0; }
.qualifier-decline-text { color: #e9e2d3; font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; }
.qualifier-decline-link {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  text-decoration: none;
  display: block;
}
.qualifier-reset {
  background: none;
  border: none;
  color: #b9ae9a;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}
.qualifier-reset-center { display: block; margin: 0 auto; background: none; border: none; color: #8f8672; font-size: 13px; cursor: pointer; text-decoration: underline; }
.qualifier-input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}
.qualifier-input::placeholder { color: #8f8672; }
.qualifier-submit { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 14.5px; padding: 14px 16px; border-radius: 11px; width: 100%; margin-bottom: 10px; }
.qualifier-step-lead { color: #e9e2d3; font-weight: 600; font-size: 15px; margin: 0 0 16px; }

/* ABOUT */
#about { background: #fff; padding: clamp(48px, 7vw, 88px) clamp(16px, 5vw, 64px); }
.about-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-elevated);
  display: block;
}
.about-eyebrow { color: var(--gold-dark); font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
#about h2 { font-weight: 800; font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 18px; color: var(--heading-dark); }
#about p { font-size: 15px; line-height: 1.65; color: var(--body-2); margin: 0 0 16px; }
.about-cta { font-size: 14.5px; padding: 13px 20px; border-radius: 11px; margin-top: 10px; }

/* HOW IT WORKS */
#how-it-works { background: linear-gradient(180deg, #efe8db, #f7f3ec); padding: clamp(48px, 7vw, 88px) clamp(16px, 5vw, 64px); }
.how-inner { max-width: 1000px; margin: 0 auto; }
#how-it-works h2 { text-align: center; font-weight: 800; font-size: clamp(24px, 3vw, 32px); color: var(--heading-dark); margin: 0 0 44px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-card); padding: 28px 22px; text-align: center; }
.how-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #232227, #34333a); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.how-card h3 { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--heading-dark); font-family: 'Manrope', sans-serif; }
.how-card p { font-size: 14px; color: var(--body-1); line-height: 1.5; margin: 0; }
.how-cta-wrap { text-align: center; margin-top: 44px; }
.how-cta { font-size: 14.5px; padding: 13px 20px; border-radius: 11px; }

/* FAQ */
#faq { background: #fff; padding: clamp(48px, 7vw, 88px) clamp(16px, 5vw, 64px); }
.faq-inner { max-width: 760px; margin: 0 auto; }
#faq h2 { text-align: center; font-weight: 800; font-size: clamp(24px, 3vw, 32px); color: var(--heading-dark); margin: 0 0 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
details.faq { background: var(--light-2); border-radius: 14px; padding: 18px 20px; }
details.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; color: var(--heading-dark); }
details.faq p { font-size: 14px; line-height: 1.6; color: var(--body-1); margin: 14px 0 0; }

/* COVERAGE */
#coverage { background: linear-gradient(180deg, #f7f3ec, #efe8db); padding: clamp(48px, 7vw, 88px) clamp(16px, 5vw, 64px); }
.coverage-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
#coverage h2 { font-weight: 800; font-size: clamp(22px, 2.8vw, 28px); color: var(--heading-dark); margin: 0 0 14px; }
#coverage > .coverage-grid > div:first-child > p { font-size: 14.5px; line-height: 1.6; color: var(--body-1); margin: 0 0 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: #fff; border: 1px solid rgba(34, 29, 21, 0.12); border-radius: 999px; padding: 8px 14px; font-size: 13px; color: var(--body-2); font-weight: 600; }
.map-wrap { width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(34, 29, 21, 0.12); line-height: 0; }
.map-wrap iframe { border: 0; display: block; width: 100%; height: 320px; }

/* FINAL CTA */
#final-cta { background: linear-gradient(160deg, #1b1a1d, #232227 55%, #34333a); padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 64px); text-align: center; }
#final-cta h2 { color: #fff; font-weight: 800; font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; text-wrap: pretty; }
#final-cta p { color: #cdc4b3; font-size: 15.5px; margin: 0 0 30px; }
.final-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.final-cta-btn { font-size: 15px; padding: 15px 24px; border-radius: 12px; }

/* FOOTER */
.site-footer { background: var(--near-black); padding: clamp(32px, 5vw, 44px) clamp(16px, 5vw, 64px); text-align: center; }
.site-footer .copy { color: #8a8172; font-size: 13.5px; margin-bottom: 8px; }
.site-footer .credit { color: #8a8172; font-size: 13px; }
.site-footer .credit a { color: var(--gold); }

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .about-grid, .coverage-grid { grid-template-columns: 1fr !important; text-align: center; gap: 24px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .how-grid { grid-template-columns: 1fr !important; }
  .hero-badges { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .header-label { display: none !important; }
  #pain-points, #how-it-works, #coverage, #final-cta, #about { text-align: center; }
  .pain-icon { margin-left: auto !important; margin-right: auto !important; }
  .chips { justify-content: center; }
  #coverage { padding-left: 16px !important; padding-right: 16px !important; }
  .map-wrap iframe { height: auto !important; width: 100% !important; aspect-ratio: 4 / 3; }
  .about-photo { max-width: 260px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero-badges { gap: 6px !important; }
  .hero-badges div div:last-child { font-size: 12px !important; }
  .map-wrap iframe { height: auto !important; width: 100% !important; aspect-ratio: 4 / 3; }
}
