body {
  background: #f6f8fb;
}

.hero-marketing {
  background: linear-gradient(120deg, #ff6000 0%, #1e293b 100%);
  color: #fff;
  padding: 60px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}

.hero-marketing .container,
.hero-marketing .row {
  position: relative;
  z-index: 2;
}

.hero-marketing .row {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
  animation: fadeInDown 1s;
}

.hero-slogan {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #e0e7ef;
  animation: fadeInUp 1.2s;
}

.hero-btn {
  background: #f9bf29;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 36px;
  font-size: 1.1rem;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.15);
  margin-top: 18px;
}

.hero-btn:hover {
  background: #fff;
  color: #ff6000;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.13);
}

.hero-img-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  padding: 24px;
  display: inline-block;
}

.hero-img {
  max-width: 340px;
  width: 100%;
  border-radius: 12px;
  box-shadow: none;
  margin: 0;
  display: block;
  animation: fadeInRight 1.2s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.counter-section {
  background: #fff;
  padding: 36px 0 16px 0;
  text-align: center;
}

.counter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.counter-item {
  min-width: 160px;
}

.counter-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff6000;
}

.counter-label {
  color: #1e293b;
  font-weight: 600;
}

.why-section {
  background: #f6f8fb;
  padding: 56px 0 32px 0;
}

.why-title {
  color: #ff6000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 28px 20px;
  width: 270px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13);
}

.why-icon {
  font-size: 2.2rem;
  color: #f9bf29;
  margin-bottom: 12px;
  transition: transform 0.2s;
}

.why-card:hover .why-icon {
  transform: scale(1.2) rotate(-8deg);
}

.why-name {
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.why-desc {
  color: #555;
  font-size: 1rem;
}

.process-section {
  background: #ff6000;
  color: #fff;
  padding: 56px 0 32px 0;
}

.process-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.process-step {
  background: #fff;
  color: #1e293b;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 32px 22px;
  width: 260px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13);
}

.process-number {
  background: #f9bf29;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px auto;
}

.process-icon {
  font-size: 2rem;
  color: #ff6000;
  margin-bottom: 10px;
}

.process-name {
  font-weight: 700;
  margin-bottom: 8px;
}

.process-desc {
  color: #444;
  font-size: 1rem;
}

.service-section {
  background: #f6f8fb;
  padding: 56px 0 32px 0;
}

.service-title {
  color: #ff6000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 32px 24px;
  width: 320px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13);
  transform: translateY(-8px) scale(1.03);
}

.service-icon {
  font-size: 2.5rem;
  color: #ff6000;
  margin-bottom: 18px;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.service-desc {
  color: #666;
  font-size: 1rem;
}

.modal-service .modal-content {
  border-radius: 18px;
}

.modal-service .modal-header {
  border-bottom: none;
}

.modal-service .modal-title {
  color: #ff6000;
  font-weight: 700;
}

.modal-service .close {
  color: #ff6000;
  font-size: 2rem;
}

.feedback-section {
  background: #fff;
  padding: 56px 0 32px 0;
}

.feedback-title {
  color: #ff6000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.feedback-slider {
  max-width: 900px;
  margin: 0 auto;
}

.feedback-card {
  background: #f6f8fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 28px 20px;
  width: 320px;
  text-align: center;
  margin: 0 12px;
}

.feedback-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.feedback-name {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.feedback-quote {
  color: #555;
  font-style: italic;
  font-size: 1rem;
}

.feedback-rating {
  color: #f9bf29;
  margin-bottom: 8px;
}

.feedback-form {
  margin-top: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  background: #f6f8fb;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.feedback-form input,
.feedback-form textarea {
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  width: 100%;
  padding: 8px 12px;
}

.feedback-form button {
  background: #ff6000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.faq-section {
  background: #fff;
  padding: 56px 0 32px 0;
}

.faq-title {
  color: #ff6000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.faq-question {
  font-weight: 700;
  color: #ff6000;
  cursor: pointer;
  position: relative;
}

.faq-answer {
  color: #444;
  font-size: 1rem;
  display: none;
  margin-top: 8px;
}

.faq-question:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question:after {
  transform: rotate(180deg);
}

.pricing-section {
  background: #f6f8fb;
  padding: 56px 0 32px 0;
}

.pricing-title {
  color: #ff6000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 32px 24px;
  width: 320px;
  text-align: center;
  border: 2px solid #ff600022;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #f9bf29;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6000;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: #f9bf29;
  margin-bottom: 12px;
}

.pricing-features {
  color: #444;
  font-size: 1rem;
  margin-bottom: 18px;
}

.pricing-btn {
  background: #f9bf29;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 700;
}

.pricing-btn:hover {
  background: #ff6000;
  color: #fff;
}

.partner-section {
  background: #fff;
  padding: 40px 0 24px 0;
}

.partner-title {
  color: #ff6000;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.partner-logos img {
  height: 100px;
  opacity: 1;
}

.blog-section {
  background: #f6f8fb;
  padding: 56px 0 32px 0;
}

.blog-title {
  color: #ff6000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 0 0 24px 0;
  width: 320px;
  text-align: left;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.blog-content {
  padding: 18px 18px 0 18px;
}

.blog-title-card {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6000;
  margin-bottom: 8px;
}

.blog-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 12px;
}

.blog-link {
  color: #f9bf29;
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

.cta-section {
  background: #ff6000;
  color: #fff;
  border-radius: 18px;
  padding: 48px 0 40px 0;
  text-align: center;
  margin: 48px 0 0 0;
}

.cta-section .cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section .btn {
  background: #f9bf29;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 36px;
  font-size: 1.1rem;
  margin: 8px;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.cta-section .btn:hover {
  background: #fff;
  color: #ff6000;
}

.cta-section .form-inline {
  max-width: 400px;
  margin: 0 auto;
}

.cta-section input,
.cta-section textarea {
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  width: 100%;
  padding: 8px 12px;
}

.cta-section button[type="submit"] {
  background: #f9bf29;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #ff6000;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 999;
  display: none;
  transition: background 0.2s;
}

.back-to-top:hover {
  background: #f9bf29;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-img {
    max-width: 260px;
  }

  .hero-marketing .row {
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .why-list,
  .process-list,
  .service-list,
  .feedback-list,
  .pricing-list,
  .blog-list,
  .partner-logos {
    flex-direction: column;
    align-items: center;
  }

  .why-card,
  .process-step,
  .service-card,
  .feedback-card,
  .pricing-card,
  .blog-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.3rem;
  }

  .hero-slogan {
    font-size: 1rem;
  }

  .hero-img-wrapper {
    padding: 12px;
  }
}
