body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #FFFFFF;
  color: #34332E;
}

header {
  background: #FFFFFF;
  border-bottom: 1px solid #eee;
  padding: 20px 5%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #34332E;
  font-weight: bold;
}

nav a:hover {
  color: #FFCC00;
}

.logo .by {
  color: #878786;
  font-size: 14px;
  margin-left: 5px;
}

/* Hero section */
.hero {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  background-color: #34332E; /* dark base color */
  color: #FFFFFF;
  overflow: hidden;
}

/* Hero content above particles */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-small {
  text-align: center;
  padding: 80px 20px;
  background: #34332E;
  color: #FFFFFF;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 42px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ddd;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFCC00;
  color: #34332E;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #FFCC00;
  color: #34332E;
  transform: scale(1.05);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.pricing h2{
text-align: center;
font-size: 36px;

}
.pricing p{
text-align: center;
font-size: 16px;

}
.pricing {
padding: 30px 10px;
background: #F9F9F9;
}


.card, .pricing-card, .blog-card {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.card:hover,
.pricing-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Pricing cards layout */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card ul {
  margin: 25px 0;
  padding-left: 20px;
  flex: 1;
}

.pricing-card .btn-primary {
  margin-top: auto;
}

.pricing-card.featured {
  border: 2px solid #FFCC00;
}

/* Make main price number big */
.price {
  font-size: 35px!important;        /* bigger number */
  font-weight: bold;
  color: #34332E;
  margin: 10px 0;
}

/* Keep the "/mo per user" smaller */
.price span {
  display: block;      /* forces span onto new line */
  font-size: 16px;     /* smaller text */
  color: #878786;
  margin-top: 5px;     /* optional spacing */
}



.steps {
  background: #F9F9F9;
  padding: 30px 20px;
  text-align: center;
}

.steps h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 60px;
  font-weight: 700;
}

.steps h2 .second-line {
  display: block;
  margin-top: 20px;
  font-weight: 400;
  color: #878786;
  font-size: 24px;
}

/* Steps grid */
/* Ensure grid items stretch to same height */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: stretch;   /* <-- important */
}

/* Step card layout */
/* Step card layout */
.step-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;          /* ensures all cards are same height */
}


.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-number {
  font-size: 28px;
  font-weight: bold;
  background: #34332E;
  color: #FFCC00;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: monospace;
  margin: 20px auto 0px; /* top spacing added, center horizontally, bottom spacing */
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #34332E;
}

.step-card p {
  flex-grow: 0;          /* reset to natural height */
  line-height: 1.6;
  color: #666666;
  margin-bottom: 0;      /* optional, tighter spacing */
}

/* Footer */
footer {
  background: #34332E;
  color: #FFFFFF;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #FFCC00;
  text-decoration: none;
  margin: 0 5px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #FFFFFF;
  margin: 0 5px;
}

/* Header logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.by-logo-header {
  display: flex;
  align-items: flex-start;
}

.logo-img {
  max-height: 30px;
  max-width: 130px;
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

.product-name {
  display: flex;
  align-items: center;
}

/* Center icons in feature cards */
.card {
  text-align: center;
  padding: 30px;
}

/* Icon styling */
.icon {
  font-size: 32px;
  color: #34332E;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4F4F2;
  margin: 0 auto 20px;
}

/* Header + paragraph above feature cards */
.features-intro {
  margin-bottom: 50px;
}

.features-intro h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 15px;
}

.features-intro p {
  font-size: 16px;
  color: #878786;
  max-width: 700px;
  text-align: left;
}



html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #FFCC00;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.newsletter {
  background: #34332E;
  color: #FFFFFF;
  text-align: center;
  padding: 10px 10px;
}

/* By Repyou logo under title */
.by-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

.by-logo span {
  font-size: 14px;
  color: #878786;
  margin-right: 5px;
}

/* Newsletter form */
.newsletter .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.newsletter .cta .col-8,
.newsletter .cta .col-4 {
  flex: unset;
  width: auto;
}

.newsletter input[type="email"] {
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid #878786;
  border-radius: 6px;
  min-width: 260px;
  outline: none;
}

.newsletter .btn-primary {
  padding: 14px 28px;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .newsletter .cta {
    flex-direction: column;
  }

  .newsletter input[type="email"],
  .newsletter .btn-primary {
    width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
