/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f7fb;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(90deg,#3b82f6,#2563eb);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

header nav a {
  color: #fff;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  color: #fbbf24;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg,#3b82f6,#10b981);
  color: #fff;
  clip-path: polygon(0 0,100% 0,100% 85%,0% 100%);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero .btn {
  background: #fbbf24;
  color: #000;
  padding: 1rem 2.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floatBtn 2s ease-in-out infinite;
}

.hero .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@keyframes floatBtn {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections */
section {
  padding: 4rem 2rem;
}

.container {
  width: 90%;
  margin: auto;
}

/* How It Works */
.how-it-works .steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.step {
  background: #fff;
  padding: 2rem;
  width: 30%;
  margin-bottom: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.step i {
  margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
  list-style: none;
}

.why-choose li {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  width: 22%;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose li:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.why-choose li i {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #3b82f6;
}

/* Writers */
.writer-profiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2rem;
}

.writer {
  background: #fff;
  width: 30%;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.writer:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.writer i {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 1rem;
}

/* Pricing */
.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2rem;
}

.tier {
  background: #fff;
  width: 28%;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tier:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.tier i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.tier.bulk i {
  color: #f472b6;
}

/* Contact */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-card {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: #fff;
  color: #333;
}

.contact-card form input,
.contact-card form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.contact-card form button {
  background: linear-gradient(90deg,#fbbf24,#f97316);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card form button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: linear-gradient(90deg,#3b82f6,#2563eb);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

/* Buttons global */
.btn {
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .step, .why-choose li, .writer, .tier {
    width: 45%;
  }
}

@media (max-width: 786px) {
  header .container {
    flex-direction: column;
  }

  header nav {
    margin-top: 1rem;
  }

  .step, .why-choose li, .writer, .tier, .contact-card {
    width: 100%;
  }
}


.step:hover, .writer:hover, .tier:hover, .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background: linear-gradient(90deg,#fbbf24,#f97316);
}


/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

.social-floating {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-floating a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-floating a:hover {
  transform: scale(1.2);
}
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #2563eb; /* darker blue */
  transform: translateY(-3px);
}

.writer, .tier, .contact-card {
  transition: all 0.3s ease;
}

.writer:hover, .tier:hover, .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}