/* Reset and base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0b14;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Navbar */
  .navbar {
    background: #0a0a0ae7;
    border-bottom: .1px solid #484949;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .logo {
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(to right, #ffa600, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
  }

  .nav-links a:hover {
    color: #ffa600;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 6rem 1rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 3.9rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  
  .highlight {
    background: linear-gradient(to right, #ffa600, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #c0c0c0;
    margin-bottom: 3rem;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* flex-wrap: wrap; */
    margin-bottom: 3rem;
  }

  .buttons a {
    text-decoration: none;
    color: #000;
  }
  
  .primary-btn {
    background: linear-gradient(to right, #ffa600, #f78708);;
    color: #000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 166, 0, 0.4);
    transition: transform 0.2s;
  }
  
  .primary-btn:hover {
    transform: translateY(-3px);
  }
  
  .secondary-btn {
    background-color: #1a1a1a;
    border-color: #ffffff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border-width: 1px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .secondary-btn:hover {
    transform: translateY(-3px);
  }
  
  .btc-bar {
    background-color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: bold;
    gap: 0.5rem;
    font-size: 1rem;
  }
  
  .btc-symbol {
    background-color: #fff;
    color: #000;
    padding: 0.3rem 0.6rem;
    border-radius: 50%;
  }
  
  .btc-growth {
    color: #00ff8b;
    margin-left: 0.5rem;
  }
  
  /* Responsive Design */
  @media (max-width: 480px) {
    .hero {
      padding: 5rem 1rem;
      text-align: center;
    }
  
    .hero h1 {
      font-size: 2.3rem;
      line-height: 3rem;
      margin: 1rem 0;
    }
  
    .hero p {
      font-size: 1.2rem;
      color: #c0c0c0;
      margin-bottom: 2rem;
      padding: 0 .4rem;
    }
  
    .buttons {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      margin-bottom: 2rem;
    }

    .secondary-btn {
      width: 90%;
      max-width: 240px;
      font-size: 0.95rem;
      padding: 0.75rem 1rem;
    }

    .primary-btn {
      width: 80%;
      max-width: 200px;
    }
  
    .btc-bar {
      font-size: 0.9rem;
      padding: 0.4rem 0.8rem;
      margin: 0 auto;
    }
  
    .btc-symbol {
      font-size: 0.9rem;
      padding: 0.2rem 0.5rem;
    }
  
    .logo {
      font-size: 2rem;
    }
  
    .navbar {
      flex-direction: row;
      padding: 1rem;
    }

  }
  

  /* ===== Why HiccupCoin? ===== */
.why {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;          /* keeps same dark backdrop */
  color: #fff;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.why-sub {
  color: #c0c0c0;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: radial-gradient(ellipse at top left,
              rgba(255,255,255,0.07) 0%,
              rgba(255,255,255,0.02) 60%),
              #111018;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(209, 159, 50, 0.774);
}

.why-icon {
  font-size: 2.3rem;
  color: #ffa600;   /* HiccupCoin accent */
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: #d4d4d4;
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .why {
    padding: 3rem 1.5rem;
  }
  .why-title {
    margin-bottom: 0.5rem;
  }
  .why-sub {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .why-card {
    align-items: center;
    width: 95%;
    padding: 2rem 1.5rem;
  }
  .why-card h3 {
    font-size: 1.125rem;
  }
}

/* ===== Trusted by Thousands ===== */
.testimonials {
  padding: 4rem 1.5rem 5rem 1.5rem;
  background: #000000;
  color: #fff;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.testimonials-sub {
  color: #c0c0c0;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: radial-gradient(ellipse at top left,
              rgba(255,255,255,0.07) 0%,
              rgba(255,255,255,0.02) 60%),
              #111018;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid #ffa600;
  margin-right: 1rem;
  object-fit: cover;
  background: #222;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.08rem;
}

.testimonial-meta {
  font-size: 0.97rem;
  color: #bdbdbd;
  margin-top: 0.15rem;
}

.testimonial-stars {
  color: #ffa600;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.05em;
}

.testimonial-card blockquote {
  color: #e9e9e9;
  font-style: italic;
  font-size: 1.01rem;
  line-height: 1.6;
  margin: 0;
  margin-top: 0.2rem;
  /* quotes: "“" "”" "‘" "’"; */
}

.testimonial-card blockquote:before {
  content: open-quote;
  color: #ffa600;
  font-size: 1.5em;
  vertical-align: -0.2em;
  margin-right: 0.1em;
}

.testimonial-card blockquote:after {
  content: close-quote;
  color: #ffa600;
  font-size: 1.5em;
  vertical-align: -0.2em;
  margin-left: 0.1em;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 1.25rem 0 1.25rem;
  }
  .testimonials-title {
    font-size: 2.8rem;
    line-height: 2.9rem;
    margin-bottom: 0.5rem;
  }
  .testimonials-sub {
    font-size: 1.12rem;
    margin-bottom: 2.5rem;
  }
  .testimonial-card {
    min-width: fit-content;
    width: 100%;
    /* padding: 2rem 1.25rem 1.5rem 1.25rem; */
  }
}

@media (max-width: 480px) {
  
  .testimonials-cards {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: row;
  }
  .testimonial-header {
    margin-bottom: 0.7rem;
  }
}

/* ===== Testimonials Stats ===== */
.testimonials-stats {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.75rem;
  text-align: center;
}

.stat-card {
  background: #111018;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.03);
}

.stat-value {
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  color: #d4d4d4;
}

.stat-label {
  font-size: 0.9rem;
  color: #a0a0a0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .testimonials-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
  }
  .stat-value {
    font-size: 2rem;
  }
  .stat-card {
    max-width: 400px;
    width: 90%;
    padding: 1.25rem 1rem;
  }
}

/* ===== CTA: Ready to Start Your Bitcoin Journey ===== */
.cta-bitcoin {
  background: rgb(10, 10, 10);
  color: #fff;
  padding: 4.5rem 1.5rem 4rem 1.5rem;
  text-align: center;
}

.cta-bitcoin-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cta-bitcoin-title {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
  color: #fff;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

.cta-bitcoin-sub {
  font-size: 1.3rem;
  padding: 0 12rem 0 12rem;
  color: #c0c0c0;
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.cta-bitcoin-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ffa600 0%, #ff7c00 100%);
  color: #181818;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 0.95rem 2.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(255, 166, 0, 0.18);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  margin-top: 0.5rem;
  cursor: pointer;
}

.cta-bitcoin-btn:hover, .cta-bitcoin-btn:focus {
  background: linear-gradient(90deg, #ff7c00 0%, #ffa600 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 166, 0, 0.22);
  transform: translateY(-2px) scale(1.03);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .cta-bitcoin-title {
    line-height: 2.9rem;
    font-size: 3rem;
  }
  .cta-bitcoin-sub {
    font-size: 1rem;
    padding: 0;
    max-width: 300px;
    width: 90%;
  }
  .cta-bitcoin-inner {
    padding: 0 0.5rem;
  }
}

.footer-section {
  background-color: #0f0d11;
  padding: 40px 60px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid #1e1e1e;
  padding-bottom: 40px;
}

.footer-column h4 {
  margin-bottom: 10px;
  position: relative;
  font-size: 1.1rem;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, #ffc107, #00e6e6);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #c5c5c5;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #fff;
}

.social-icons {
  margin-top: 15px;
}

.social-icons i {
  margin-right: 15px;
  font-size: 18px;
  color: #c5c5c5;
  cursor: pointer;
}

.social-icons i:hover {
  color: #00e6e6;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #999;
}

@media (max-width: 480px) {
  .footer-section {
    padding-left: 1rem;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
  }
 
}






  