/* --------------------------------------
   RESET & BASE
----------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1080px;
  margin: auto;
  padding: 20px;
}

/* --------------------------------------
   HEADER
----------------------------------------- */
.main-header {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.logo a {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  margin-top: 10px;
}
.nav-links a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #ffe46b;
}

/* --------------------------------------
   HERO SECTION
----------------------------------------- */
.hero,
.hero-section {
  background: linear-gradient(135deg, #f472b6, #fb923c);
  color: white;
  text-align: center;
  padding: 80px 20px;
  animation: fadeIn 1s ease-in-out;
}
.hero h2,
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p,
.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}
.hero a,
.cta-button {
  display: inline-block;
  background: white;
  color: #f43f5e;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}
.hero a:hover,
.cta-button:hover {
  background: #ffe46b;
  color: #111827;
}

/* --------------------------------------
   FEATURES SECTION
----------------------------------------- */
.features-section {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}
.features-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.features-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --------------------------------------
   TESTIMONIALS SECTION
----------------------------------------- */
.testimonial-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
  margin: auto;
}
.testimonial {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #475569;
}

/* --------------------------------------
   PROOF SECTION
----------------------------------------- */
.proof-section {
  background: #fefefe;
  padding: 60px 20px;
  text-align: center;
}
.proof-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.proof-section img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 20px;
}

/* --------------------------------------
   MAIN CONTENT & FOOTER
----------------------------------------- */
.main-content {
  padding: 40px 20px;
}

.main-footer {
  background: #1e293b;
  color: #fff;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
}

/* --------------------------------------
   ANIMATIONS
----------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
