/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f7f7f7;
  color: #111;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff6600, #ff3300);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 35px;
}
.hero .cta {
  display: inline-block;
  padding: 18px 35px;
  background: #fff;
  color: #ff3300;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.hero .cta:hover {
  background: #ffe5db;
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Sections */
section {
  padding: 70px 20px;
  text-align: center;
}
section h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

/* Boxes */
.boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  flex: 1 1 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}
.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.box p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Demo Boxes Styling */
.demo .box span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

/* CTA Section */
.final-cta {
  background: #ff3300;
  color: #fff;
  padding: 80px 20px;
}
.final-cta .cta {
  background: #fff;
  color: #ff3300;
}
.final-cta .cta:hover {
  background: #ffe5db;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  section h2 { font-size: 1.8rem; }
  .boxes { flex-direction: column; gap: 20px; }
}
.box {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.box.fade-in {
  opacity: 1;
  transform: translateY(0);
}
