* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #fff;
  color: #000;
}

/* HEADER */
.header {
  padding: 22px 80px;
  border-bottom: 1px solid #eee;
}

.nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 34px;
}

nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 17px;
}

nav a.active {
  color: #000;
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 140px 20px;
  text-align: center;
}

.hero.dark {
  background: #000;
  color: #fff;
}

.hero.dark h1{
  font-size: 44px;
}

.hero p {
  margin-top: 14px;
  color: #aaa;
  font-size: 18px;
}

/* DEMO */
#demo {
  padding: 80px 20px;
}

.demo-box {
  max-width: 900px;
  margin: auto;
  padding: 60px 40px;
  border-radius: 32px;
  border: 2px solid #e6e6e6;
  text-align: center;
}

.demo-box p {
  margin: 20px auto 40px;
  max-width: 700px;
  color: #555;
}

.demo-box button {
  padding: 16px 36px;
  border-radius: 24px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 15px;
}

.note {
  display: block;
  margin-top: 16px;
  color: #777;
  font-size: 13px;
}


/* ============================= */
/* DETAILS */
/* ============================= */

.flow-details.aligned {
  max-width: 100%;
  padding: 120px 35px;
  background-color: #000;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

/* 🔥 SECTION HEADING */
h1.flowdetails {
  grid-column: 1 / -1;
  font-size: 46px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}

/* One-line Subtext */
.flow-subtext {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 15px;
  color: #b5b5b5;
  margin-bottom: 42px;
  letter-spacing: 0.2px;
}



/* DETAIL BOX */
.flow-details .detail {
  background: #0b0b0f;
  border: 1px solid #1a1a1a;
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  text-align: center;
}

.flow-details .detail h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.flow-details .detail p {
  font-size: 14px;
  line-height: 1.7;
  color: #d4d4d4;
}

/* Highlight Upvera */
.flow-details .detail.highlight {
  border-color: #585858;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {
  .flow-details.aligned {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .flow-details.aligned {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 100px 24px;
  }

  h1.flowdetails {
    font-size: 32px;
  }
}



/* PRICING */
#pricing {
  padding: 80px 80px;
}

#pricing h2{
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 2px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1150px;
  margin: auto;
}

.pricing-card {
  border-radius: 24px;
  padding: 44px 34px;
}

.silver { background: #fafafa; border: 1px solid #e6e6e6; }
.gold { background: #fff8ee; border: 2px solid #000; }
.diamond { background: #f3f6fa; border: 1px solid #d8e1ec; }

.price {
  font-size: 38px;
  font-weight: 700;
}

.old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}

.pricing-card ul {
  list-style: none;
  margin: 30px 0;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.pricing-card button {
  width: 100%;
  padding: 14px;
  border-radius: 22px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
}

/* BADGE */
.badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* CTA STRIP */
.cta {
  padding: 90px 24px;
  text-align: center;
}

/* Dark CTA */
.cta.dark {
  background: #000;
  color: #fff;
}

/* Heading */
.cta h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

/* Subtext */
.cta p {
  font-size: 18px;
  color: #b5b5b5;
  margin-bottom: 36px;
}

/* Button (slightly smaller, premium) */
.cta button {
  padding: 13px 28px;
  border-radius: 24px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover polish */
.cta button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 34px;
  }

  .cta p {
    font-size: 16px;
  }
}


/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  color: #777;
  background-color: #000;
  padding-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 20px;
  }

  #pricing {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    font-size: 24px;
  }

  nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  #pricing {
    padding: 60px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 24px;
  }

  button {
    padding: 12px 16px;
    font-size: 14px;
  }
}









@media (max-width: 480px) {
  .header {
    padding: 14px 16px;
  }

  .nav {
    gap: 5px;

  }

  .logo {
    font-size: 20px;
  }

  nav a {
    margin-left: 10px;
    font-size: 13px;
  }

  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero.dark h1{
  font-size: 32px;
  }
  
  .hero p {
    margin-top: 5px;
    font-size: 13px;
  }

  #pricing {
    padding: 40px 15px;
  }

  .price {
  font-size: 32px;
  font-weight: 700;
}

  .pricing-card {
    padding: 16px;
  }

  #pricing h2{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 2px;
  }
  .pricing-card h3 {
    font-size: 18px;
  }

  .pricing-card p {
    font-size: 12px;
  }
  
  button {
    padding: 10px 12px;
    font-size: 12px;
    min-height: 44px;
  }

  button:hover {
    transform: none;
  }

  .cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .cta p {
    margin-bottom: 15px;
  }

  .footer {
    padding: 30px 15px;
  }
}

/* ---------- MICRO INTERACTIONS ---------- */
button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
