/* style.css */
:root {
  --primary-color: #ff5e3a;
  --secondary-color: #ff2a6d;
  --bg-color: #f9f9f9;
  --text-color: #333;
}
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}
#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(135deg, #ff9a44 0%, #fc6076 100%);
  overflow: hidden;
}
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 800px;
}
.cta-btn {
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff5e3a;
  background-color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
/* Pricing */
.pricing-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.card {
  width: 300px;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  background: white;
  text-align: left;
}
.card:hover {
  transform: translateY(-10px);
}
.card.dark {
  background: #2a2d34;
  color: white;
}
.card.dark .price {
  color: white;
}
.card.dark hr {
  border-color: rgba(255,255,255,0.1);
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card .price {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.card .price span {
  font-size: 1rem;
  font-weight: normal;
}
.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.card ul li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.card.dark ul li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.card .btn {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}
.card.dark .btn {
  background: white;
  color: #2a2d34;
}
.card .btn:hover {
  background: #e0e0e0;
}
/* Reviews & FAQ */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.faq-container, .reviews-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.faq-item {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.faq-item h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}
.faq-item p {
  margin: 0;
  color: #666;
}
.review-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.review-card p {
  font-style: italic;
}
.review-card .author {
  margin-top: 10px;
  font-weight: bold;
  text-align: right;
  color: var(--primary-color);
}
/* Article List */
.article-list {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.article-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}
.article-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.article-item h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}
.article-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
