:root {
  --bg: #0d0d1a;
  --bg-card: #13132a;
  --bg-card-hover: #1a1a35;
  --gold: #f0b429;
  --gold-glow: rgba(240,180,41,0.22);
  --gold-faint: rgba(240,180,41,0.08);
  --border-gold: rgba(240,180,41,0.28);
  --text: #f0f0f8;
  --muted: #7878a0;
  --border: rgba(255,255,255,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(240,180,41,0.10) 0%, transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 100% 100%, 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

.gold-text {
  background: linear-gradient(130deg, #f0b429 0%, #ffd166 55%, #c8920a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section { position: relative; z-index: 1; }

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--muted);
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.7;
}

.gold-line {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: #0d0d1a;
  font-weight: 700;
}
.btn-gold:hover {
  background: #ffd166;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,180,41,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(13,13,26,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--gold);
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  padding: 150px 0 96px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 34px;
  line-height: 1.75;
}

/* ── BROWSER MOCKUP ── */
.browser-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border-gold),
    0 40px 70px rgba(0,0,0,0.55),
    0 0 70px rgba(240,180,41,0.10);
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease;
}

.browser-mockup:hover {
  transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
}

.browser-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.b-dots { display: flex; gap: 5px; }
.b-dot { width: 9px; height: 9px; border-radius: 50%; }
.b-dot:nth-child(1) { background: #ff5f57; }
.b-dot:nth-child(2) { background: #febc2e; }
.b-dot:nth-child(3) { background: #28c840; }

.b-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--muted);
}

.browser-screen {
  padding: 20px;
  background: linear-gradient(155deg, #14142e 0%, #0d0d1a 100%);
}

.mock-nav {
  background: rgba(240,180,41,0.07);
  border: 1px solid var(--border-gold);
  border-radius: 7px;
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.mock-logo { width: 72px; height: 9px; background: var(--gold); border-radius: 4px; opacity: 0.8; }
.mock-links { display: flex; gap: 6px; }
.mock-link  { width: 36px; height: 7px; background: rgba(255,255,255,0.12); border-radius: 3px; }

.mock-hero { text-align: center; padding: 16px 0; }
.mock-h { width: 65%; height: 12px; background: linear-gradient(90deg, var(--gold), #ffd166); border-radius: 5px; margin: 0 auto 8px; }
.mock-s { width: 48%; height: 7px; background: rgba(255,255,255,0.09); border-radius: 3px; margin: 0 auto 14px; }
.mock-btn { display: inline-block; width: 110px; height: 28px; background: var(--gold); border-radius: 5px; opacity: 0.9; }

.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; margin-top: 16px; }
.mock-card  { height: 52px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 7px; }

/* ── BENEFITS ── */
.benefits { padding: 96px 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 52px;
}

.benefits-list { display: flex; flex-direction: column; gap: 16px; }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.benefit-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateX(5px);
}

.benefit-icon {
  width: 34px; height: 34px;
  min-width: 34px;
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.benefit-text h4 {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.benefit-text p { font-size: 0.86rem; color: var(--muted); }

.stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 0 60px var(--gold-glow);
}

.stat-big {
  font-family: 'Playfair Display', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 0.88rem; color: var(--muted); }

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 26px;
}

.stat-mini { background: var(--bg-card); padding: 18px 12px; text-align: center; }
.stat-mini-n { font-family: 'Playfair Display', sans-serif; font-size: 1.55rem; font-weight: 800; color: var(--gold); }
.stat-mini-l { font-size: 0.76rem; color: var(--muted); margin-top: 3px; }

/* ── ABOUT ── */
.about { padding: 96px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 2px dashed var(--border-gold);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.about-img svg { color: var(--gold); opacity: 0.55; }

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  opacity: 0.25;
  pointer-events: none;
}

.about-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-content p strong { color: var(--text); }

/* ── SERVICES ── */
.services { padding: 96px 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 52px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 28px var(--gold-glow);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p  { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 96px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.28s ease;
}

.t-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }

.quote { font-family: 'Playfair Display', sans-serif; font-size: 3.5rem; line-height: 0.75; color: var(--gold); opacity: 0.35; margin-bottom: 10px; display: block; }

.t-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }

.t-author { display: flex; align-items: center; gap: 10px; }

.t-avatar {
  width: 38px; height: 38px;
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
}

.t-author h5 { font-size: 0.86rem; font-weight: 600; }
.t-author span { font-size: 0.76rem; color: var(--muted); }

.placeholder-note { font-size: 0.74rem; color: rgba(240,180,41,0.45); text-align: center; margin-top: 20px; font-style: italic; }

/* ── FOOTER CTA ── */
.footer-cta { padding: 96px 0; }

.footer-cta-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a35 100%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 0 80px rgba(240,180,41,0.07);
  position: relative;
  overflow: hidden;
}

.footer-cta-box::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 180px;
  background: radial-gradient(ellipse, rgba(240,180,41,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-box h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.footer-cta-box p  { color: var(--muted); max-width: 460px; margin: 0 auto 32px; }

/* ── FOOTER ── */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p { color: var(--muted); font-size: 0.86rem; }
footer span { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 3s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.28); }
  50%       { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 44px; }
  .browser-mockup   { transform: none; max-width: 460px; margin: 0 auto; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .about-inner      { grid-template-columns: 1fr; }
  .about-img        { aspect-ratio: 4/3; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .hero            { padding: 120px 0 72px; }
  .services-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-cta-box  { padding: 44px 24px; }
}
