* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0e0e0e;
  color: #fff;
  overflow-x: hidden;
}

/* ================= FLOATING BACKGROUND ================= */
.bg-shape {
  position: fixed;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #c9a24d55, transparent 70%);
  filter: blur(50px);
  animation: float 18s infinite alternate ease-in-out;
  z-index: 0;
}

.bg-shape.one { top: 10%; left: -120px; }
.bg-shape.two { top: 60%; right: -120px; animation-duration: 22s; }
.bg-shape.three { bottom: -100px; left: 40%; animation-duration: 26s; }

@keyframes float {
  to { transform: translateY(-70px) translateX(50px); }
}

/* ================= LAYOUT ================= */
.container {
  max-width: 1150px;
  margin: auto;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.section.dark {
  background: transparent;
}

/* ================= NAV ================= */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #c9a24d;
}

.nav-btn {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
}

/* ================= HERO ================= */
.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
}

.hero span {
  color: #c9a24d;
}

.hero p {
  margin: 28px 0 38px;
  color: #ccc;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 18px 44px;
  background: #c9a24d;
  color: #0e0e0e;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

/* ================= TRUST BAR ================= */
.trust {
  background: #111;
  padding: 36px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  text-align: center;
  color: #aaa;
  font-size: 15px;
}

/* ================= HEADINGS ================= */
h2 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 45px;
}

/* ================= GRIDS ================= */
.grid,
.demo-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 40px;
  margin-top: 45px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}

.demo-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ================= CARDS ================= */
.card,
.demo-card,
.price-card,
.testimonial {
  background: #161616;
  padding: 42px;
  border-radius: 16px;
  min-height: 190px;
}

/* Demo cards clickable fix */
.demo-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.demo-card h3 {
  color: #fff;
  text-decoration: none;
}

/* Titles */
.card h3,
.demo-card h3,
.price-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

/* Text */
.card p,
.demo-card p,
.price-card p {
  font-size: 17px;
  line-height: 1.75;
  color: #ccc;
}

.demo-card span {
  display: inline-block;
  margin-top: 16px;
  color: #c9a24d;
  font-weight: 600;
  font-size: 14px;
}

/* ================= PRICING ================= */
#pricing {
  position: relative;
  z-index: 2;
}

.price {
  font-size: 30px;
  font-weight: 800;
  margin: 18px 0;
}

.highlight {
  border: 2px solid #c9a24d;
}

/* ================= HOW IT WORKS ================= */
.process {
  max-width: 700px;
  margin-top: 50px;
}

.process-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  margin-bottom: 30px;
  align-items: start;
}

.process-step span {
  font-size: 22px;
  font-weight: 700;
  color: #c9a24d;
}

.process-step p {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

/* ================= TESTIMONIALS ================= */
.testimonial p {
  font-size: 17px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

.testimonial span {
  font-size: 14px;
  color: #aaa;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 44px 0;
  color: #666;
  font-size: 14px;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: reveal 1s ease forwards;
}

.delay-1 { animation-delay: .3s; }
.delay-2 { animation-delay: .6s; }
.delay-3 { animation-delay: .9s; }
.delay-4 { animation-delay: 1.2s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #2528d3;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  z-index: 999;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero h1 { font-size: 40px; }
  h2 { font-size: 32px; }

  .card,
  .demo-card,
  .price-card,
  .testimonial {
    padding: 32px;
  }
}
/* ================= DEMO NAVBAR ================= */
.demo-nav {
  position: sticky;
  top: 0;
  background: rgba(14,14,14,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
  z-index: 999;
}

.demo-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
}

.demo-nav .logo {
  font-size: 18px;
  font-weight: 700;
}

.demo-nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 22px;
  font-size: 14px;
}

.demo-nav a:hover {
  color: #c9a24d;
}

.demo-back {
  color: #c9a24d !important;
  font-weight: 600;
}
/* ================= NAME MODAL (FIXED) ================= */
.name-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.name-box {
  background: #161616;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 420px;
}

.name-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.name-box p {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 15px;
}

.name-box input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  margin-bottom: 14px;
  font-size: 16px;
}

.name-box button {
  width: 100%;
  padding: 14px;
  background: #c9a24d;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
