:root {
  --bg: #0a0a0c;
  --bg-alt: #131316;
  --panel: #17171b;
  --line: rgba(255,255,255,.08);
  --gold: #d4af6a;
  --gold-bright: #f2cf8e;
  --text: #f3f3f1;
  --text-muted: #9a9aa2;
  --radius: 16px;
  --max-width: 1180px;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.03) 1px, transparent 0);
  background-size: 3px 3px;
}

.gold-text { color: var(--gold-bright); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .25s ease, padding .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(10,10,12,.8);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.header-inner { display: flex; align-items: center; gap: 20px; }
.logo img { height: 34px; }
.main-nav { display: flex; gap: 28px; flex: 1; justify-content: center; font-weight: 600; font-size: .95rem; }
.main-nav a { color: var(--text-muted); transition: color .2s; }
.main-nav a:hover { color: var(--gold-bright); }

.header-cta { display: inline-block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn small { font-weight: 500; opacity: .75; font-size: .78rem; }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1305;
  box-shadow: 0 6px 22px rgba(212,175,106,.28);
}
.btn-gold:hover { box-shadow: 0 10px 28px rgba(212,175,106,.4); }
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.btn-gold:hover::after { left: 130%; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }

/* Sections */
.section { padding: 110px 0; position: relative; z-index: 2; }
.section-dark { background: var(--bg-alt); }
.section-split { padding: 90px 0; }

.eyebrow {
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: .8rem;
  text-transform: uppercase;
}
.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 10px 0 16px;
  letter-spacing: -.01em;
}
.section-lead { max-width: 640px; color: var(--text-muted); margin-bottom: 44px; font-size: 1.05rem; }

.glass {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* HERO */
.hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  z-index: 0;
}
.hero-glow-1 { background: var(--gold); top: -220px; right: -140px; animation: drift-a 14s ease-in-out infinite; }
.hero-glow-2 { background: #6d4bd6; opacity: .18; bottom: -260px; left: -180px; animation: drift-b 18s ease-in-out infinite; }

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 90px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,106,.12);
  color: var(--gold-bright);
  border: 1px solid rgba(212,175,106,.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}

.hero-sub { color: var(--text-muted); font-size: 1.12rem; max-width: 540px; margin-bottom: 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 2.1rem; color: var(--gold-bright); letter-spacing: -.02em; }
.stat strong small { font-size: 1.1rem; font-weight: 600; margin-left: 3px; }
.stat span { color: var(--text-muted); font-size: .88rem; }

.hero-visual { position: relative; }
.hero-card { padding: 14px; position: relative; overflow: hidden; animation: float-card 5s ease-in-out infinite; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card img { border-radius: 10px; }
.hero-card-tag {
  position: absolute;
  left: 26px; bottom: 26px;
  background: rgba(10,10,12,.75);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--line);
}
.hero-float-badge {
  position: absolute;
  top: -18px; right: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #43d17a;
  box-shadow: 0 0 0 rgba(67,209,122,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(67,209,122,.6); }
  70% { box-shadow: 0 0 0 8px rgba(67,209,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,209,122,0); }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(255,255,255,.02);
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
.marquee-track span {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Steps */
.section-steps { padding-top: 80px; padding-bottom: 80px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(212,175,106,.35); }
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1305;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.step-card p { color: var(--text-muted); font-size: .95rem; margin: 0; }
.steps-grid .step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 40px;
  right: -32px;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: .5;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  grid-column: span 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.bento-card:hover { transform: translateY(-6px); border-color: rgba(212,175,106,.4); box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.bento :nth-child(2)[data-reveal] { transition-delay: .05s; }
.bento :nth-child(3)[data-reveal] { transition-delay: .1s; }
.bento :nth-child(4)[data-reveal] { transition-delay: .15s; }
.bento :nth-child(5)[data-reveal] { transition-delay: .2s; }
.bento :nth-child(6)[data-reveal] { transition-delay: .25s; }
.bento-card-lg { grid-column: span 2; grid-row: span 1; }
.bento-card-dark { background: linear-gradient(155deg, #1c1710, var(--panel)); border-color: rgba(212,175,106,.25); }

.bento-icon { font-size: 1.8rem; margin-bottom: 14px; }
.bento-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.bento-card p { color: var(--text-muted); font-size: .95rem; margin: 0 0 16px; }

.tag-list { list-style: none; padding: 0; display: flex; gap: 10px; margin: 0 0 18px; flex-wrap: wrap; }
.tag-list li {
  background: rgba(212,175,106,.1);
  color: var(--gold-bright);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
}

.bento-cta { margin-top: auto; font-weight: 700; color: var(--gold-bright); }
.bento-cta:hover { color: var(--gold); }
.bento-cta-gold { color: var(--gold-bright); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(212,175,106,.35); }
.testimonial-stars { color: var(--gold-bright); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { color: #d8d8dc; font-size: .98rem; margin: 0 0 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; color: var(--text-muted); }
.testimonial-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1305;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Badges */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.badge-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease;
}
.badge-item:hover { transform: translateY(-4px); border-color: rgba(212,175,106,.35); }
.badge-grid :nth-child(2)[data-reveal] { transition-delay: .05s; }
.badge-grid :nth-child(3)[data-reveal] { transition-delay: .1s; }
.badge-grid :nth-child(4)[data-reveal] { transition-delay: .15s; }
.badge-icon { font-size: 1.6rem; margin-bottom: 12px; }
.badge-item strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.badge-item span { color: var(--text-muted); font-size: .9rem; }

/* Coverage */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.coverage-time { padding: 26px; transition: transform .2s ease, border-color .2s ease; }
.coverage-time:hover { transform: translateY(-4px); border-color: rgba(212,175,106,.35); }
.coverage-time strong { display: block; font-size: 1.5rem; color: var(--gold-bright); margin-bottom: 8px; }
.coverage-time span { color: var(--text-muted); font-size: .9rem; }

/* Check list */
.check-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-muted);
  font-size: .96rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  width: 22px; height: 22px;
  background: rgba(212,175,106,.15);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; }
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--gold-bright);
  font-size: 1.3rem;
  transition: transform .25s ease;
  margin-left: 16px;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--text-muted); margin: 14px 0 0; font-size: .95rem; }

.cities-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.cities-grid span {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: transform .15s ease, color .15s ease, border-color .15s ease;
}
.cities-grid span:hover {
  transform: translateY(-3px);
  color: var(--gold-bright);
  border-color: rgba(212,175,106,.4);
}
.cities-note { color: var(--text-muted); font-size: .92rem; }

/* Split */
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.split-visual { overflow: hidden; padding: 0; }
.split-visual img { border-radius: var(--radius); }
.split-grid p { color: var(--text-muted); margin-bottom: 18px; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-inner p { color: var(--text-muted); margin-bottom: 22px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--gold-bright); }

.contact-form { padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-form label { font-size: .88rem; font-weight: 700; display: flex; flex-direction: column; gap: 8px; color: var(--text-muted); }
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(255,255,255,.03);
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form select:invalid { color: var(--text-muted); }
.contact-form textarea { min-height: 110px; resize: vertical; }

/* Footer */
.site-footer { background: #060607; padding: 60px 0 0; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 34px; }
.footer-logo { height: 30px; margin-bottom: 14px; }
.footer-inner p { color: var(--text-muted); font-size: .9rem; }
.footer-fine { font-size: .82rem; }
.footer-inner h4 { color: var(--text); margin-bottom: 14px; font-size: .95rem; }
.footer-inner a { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: .92rem; }
.footer-inner a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 24px; font-size: .82rem; color: var(--text-muted); text-align: center; }

/* Mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: rgba(10,10,12,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .92rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}
.mobile-bar-btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1305; border: none; }

.whatsapp-float {
  position: fixed;
  bottom: 22px; right: 22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1305;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 22px rgba(212,175,106,.4);
  z-index: 300;
}

/* Blog */
.blog-hero { padding: 150px 0 50px; }
.blog-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 10px 0 14px; }
.blog-hero p { color: var(--text-muted); max-width: 600px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 90px;
}
.post-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(212,175,106,.4); }
.post-card .eyebrow { font-size: .72rem; }
.post-card h2 { font-size: 1.15rem; margin: 10px 0 12px; }
.post-card p { color: var(--text-muted); font-size: .92rem; margin: 0 0 18px; flex: 1; }
.post-card a.read-more { font-weight: 700; color: var(--gold-bright); }

.article {
  padding: 150px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}
.article .eyebrow { display: block; margin-bottom: 10px; }
.article h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 18px; letter-spacing: -.01em; }
.article .article-meta { color: var(--text-muted); font-size: .88rem; margin-bottom: 40px; }
.article h2 { font-size: 1.4rem; margin: 40px 0 14px; color: var(--gold-bright); }
.article p { color: #d8d8dc; font-size: 1.02rem; margin: 0 0 18px; }
.article ul { color: #d8d8dc; padding-left: 22px; margin: 0 0 18px; }
.article ul li { margin-bottom: 8px; }
.article .article-cta {
  margin-top: 50px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  text-align: center;
}
.article .article-cta p { margin-bottom: 18px; }
.back-link { display: inline-block; margin-bottom: 30px; color: var(--gold-bright); font-weight: 600; }

@media (max-width: 980px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 980px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step-card::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .split-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card-lg { grid-column: span 2; }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 16px; right: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    padding: 18px;
    gap: 16px;
    display: none;
    z-index: 400;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-card-lg { grid-column: span 1; }
  .badge-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .mobile-bar { display: flex; }
  .whatsapp-float { display: none; }
  main { padding-bottom: 78px; }
  .site-footer { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; opacity: 1; transform: none; }
}
