/* Rating Landing Page Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #2d3748;
  line-height: 1.6;
}

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

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #17E1A8;
}

.header-cta {
  background: #17E1A8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: #14c594;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #2d3748;
  cursor: pointer;
}

.mobile-other-services {
  display: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f9d58 0%, #17E1A8 100%);
  padding: 200px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ffe066;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0f9d58;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-visual {
  text-align: center;
  position: relative;
}

.hero-phone-img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.22));
}

.hero-visual .rating-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 320px;
  margin: 0 auto;
}

.rating-card .icon {
  font-size: 50px;
  color: #0f9d58;
  margin-bottom: 15px;
}

.rating-card .rating-label {
  font-size: 14px;
  color: #718096;
  margin-bottom: 5px;
}

.rating-card .rating-value {
  font-size: 42px;
  font-weight: 700;
  color: #0f9d58;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rating-card .rating-value i {
  font-size: 24px;
  color: #17E1A8;
}

.rating-card .rating-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  color: #0f9d58;
  font-weight: 600;
}

/* Problems Section */
.problems {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 16px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.problem-card {
  background: #fef2f2;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid #fecaca;
}

.problem-card .icon {
  width: 60px;
  height: 60px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #dc2626;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #991b1b;
}

.problem-card p {
  font-size: 14px;
  color: #7f1d1d;
  opacity: 0.8;
}

/* Solution Section */
.solution {
  padding: 80px 0;
  background: #f5f7fa;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2d3748;
}

.solution-text h2 span {
  color: #0f9d58;
}

.solution-text p {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 30px;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: #0f9d58;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

.solution-image {
  text-align: center;
}

.report-carousel {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.report-carousel::-webkit-scrollbar {
  display: none;
}

.solution-image .solution-img {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  height: auto;
  scroll-snap-align: start;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #bbf7d0;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 157, 88, 0.15);
}

.benefit-card .icon {
  width: 50px;
  height: 50px;
  background: #0f9d58;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin: 0 auto 20px auto;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #166534;
}

.benefit-card p {
  font-size: 14px;
  color: #15803d;
  opacity: 0.9;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f9d58 0%, #17E1A8 100%);
  color: #fff;
}

.pricing .section-title h2,
.pricing .section-title p {
  color: #fff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  color: #2d3748;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.pricing-card .badge {
  display: inline-block;
  background: #0f9d58;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #0f9d58;
  margin-bottom: 5px;
}

.pricing-card .price-detail {
  font-size: 14px;
  color: #718096;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li i {
  color: #0f9d58;
}

.pricing-card .cta {
  display: block;
  background: #0f9d58;
  color: #fff;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-card .cta:hover {
  background: #0d8a4d;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: #f7fafc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #17E1A8;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #17E1A8, #14c594);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}

.review-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #718096;
}

.review-stars {
  color: #ffc107;
  font-size: 14px;
}

.review-service {
  font-size: 12px;
  color: #17E1A8;
  font-weight: 500;
  margin-top: 4px;
}

.review-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.review-service-tag {
  font-size: 11px;
  color: #17E1A8;
  font-weight: 500;
  background: rgba(23, 225, 168, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(23, 225, 168, 0.2);
}

.review-debt {
  font-size: 12px;
  color: #718096;
  font-weight: 500;
  margin-top: 4px;
}

.review-debt i {
  color: #17E1A8;
  margin-right: 4px;
  width: 14px;
  display: inline-block;
  text-align: center;
}

.review-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #718096;
}

.review-footer i {
  color: #17E1A8;
  margin-right: 4px;
  width: 14px;
  display: inline-block;
  text-align: center;
}

.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: #17E1A8;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn:hover {
  background: #14c594;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(23, 225, 168, 0.3);
}

.load-more-btn:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
}

.reviews-loading {
  text-align: center;
  padding: 40px;
  color: #718096;
}

.spinner {
  border: 3px solid #f3f4f6;
  border-top: 3px solid #17E1A8;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* FAQ Section */
.faq,
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-service-group {
  margin-bottom: 48px;
}

.faq-service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #17E1A8;
}

.faq-service-header i {
  font-size: 24px;
  color: #17E1A8;
}

.faq-service-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.faq-more-link:hover {
  gap: 12px;
}

.faq-item {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #17E1A8;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #fff;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(23, 225, 168, 0.03);
}

.faq-question h4,
.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-icon,
.faq-question i {
  font-size: 20px;
  color: #17E1A8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon,
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  color: #718096;
  line-height: 1.7;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  padding: 8px 24px 20px;
  max-height: 1000px;
}

.faq-answer p {
  color: #718096;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #fff 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-content {
  padding: 30px;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(23, 225, 168, 0.1), rgba(23, 225, 168, 0.05));
  color: #17E1A8;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  gap: 12px;
  color: #14c594;
}

.blog-link i {
  font-size: 12px;
}

.blog-loading {
  text-align: center;
  padding: 2rem;
  grid-column: 1 / -1;
  color: #718096;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

.service-cta:hover {
  gap: 12px;
}

.service-cta i {
  font-size: 14px;
}

/* CTA Final */
.cta-final {
  padding: 80px 0;
  background: #1a365d;
  color: #fff;
  text-align: center;
}

.cta-final h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-final p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-final .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-final .cta-btn:hover {
  background: #20ba5a;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: #1a202c;
  color: #cbd5e0;
  padding: 50px 0 30px;
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #17E1A8;
  color: #fff;
}

.footer-complaint-link {
  display: inline-block;
  margin-top: 18px;
}

.footer-complaint-link img {
  max-width: 180px;
  height: auto;
}

.footer-section h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #17E1A8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Carousel buttons - hidden by default (desktop) */
.carousel-btn {
  display: none;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    z-index: 99;
  }

  .header-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-toggle.active i {
    color: #17E1A8;
  }

  .mobile-other-services {
    display: grid;
    width: 100%;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
  }

  .mobile-other-services span {
    color: #2d3748;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .mobile-other-services a {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fff;
    color: #4a5568;
    font-size: 13px;
    line-height: 1.25;
  }

  .mobile-other-services a:hover {
    color: #0f9d58;
    background: rgba(23, 225, 168, 0.1);
  }

  .header-cta {
    font-size: 13px;
    padding: 8px 12px;
    gap: 6px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero {
    padding: 150px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .hero-visual .rating-card {
    max-width: 250px;
    padding: 20px;
  }

  .rating-card .rating-value {
    font-size: 36px;
  }

  /* Carousel Mobile */
  .carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 45px;
    margin: 0 -20px;
  }

  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #17E1A8;
    border-radius: 50%;
    color: #17E1A8;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  .carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    background: #17E1A8;
    color: #fff;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }

  .carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 0 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .carousel-container::-webkit-scrollbar {
    display: none;
  }

  .problems-grid.carousel-container .problem-card,
  .benefits-grid.carousel-container .benefit-card {
    flex: 0 0 calc(85% - 10px);
    scroll-snap-align: start;
    min-width: calc(85% - 10px);
  }

  .pricing-cards.carousel-container .pricing-card {
    flex: 0 0 calc(96% - 10px);
    scroll-snap-align: start;
    min-width: calc(96% - 10px);
  }

  /* Esconde setas apenas no pricing */
  .carousel-wrapper:has(.pricing-cards) .carousel-btn {
    display: none;
  }

  /* Ajusta padding do wrapper do pricing */
  .carousel-wrapper:has(.pricing-cards) {
    padding: 0 5px 0 12px;
  }

  .problems-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .solution-image {
    order: -1;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .cta-final h2 {
    font-size: 24px;
  }

  .cta-final .cta-btn {
    padding: 16px 30px;
    font-size: 16px;
  }
}

/* CTA Intermediário */
.cta-intermediate {
  padding: 60px 0;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  text-align: center;
  color: #fff;
}

.cta-intermediate h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-intermediate p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.cta-intermediate .cta-btn {
  background: #fff;
  color: #0f766e;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-intermediate .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f0fdf4;
}

.cta-intermediate .cta-btn i {
  font-size: 20px;
}

/* Modal Pré-Cadastro */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.modal-box {
  background: #1a1f2e;
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #8892a4;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #fff;
}

.modal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
  padding-right: 30px;
}

.modal-subtitle {
  color: #8892a4;
  font-size: 14px;
  margin: 0 0 24px 0;
}

.modal-form .form-group {
  margin-bottom: 20px;
}

.modal-form .form-group label {
  display: block;
  color: #c4cad6;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  background: #252b3b;
  border: 1.5px solid #363d50;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.modal-form input[type="text"]::placeholder,
.modal-form input[type="email"]::placeholder,
.modal-form input[type="tel"]::placeholder {
  color: #5a6478;
}

.modal-form input[type="text"]:focus,
.modal-form input[type="email"]:focus,
.modal-form input[type="tel"]:focus {
  border-color: #17E1A8;
}

.field-help {
  color: #8892a4;
  font-size: 12px;
  margin: -2px 0 10px;
}

.form-error {
  color: #f87171;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  min-height: 16px;
}

.toggle-group {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #363d50;
}

.toggle-btn {
  flex: 1;
  padding: 10px 16px;
  background: #252b3b;
  border: none;
  color: #8892a4;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: #17E1A8;
  color: #1a1f2e;
}

.toggle-btn:not(:last-child) {
  border-right: 1px solid #363d50;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}

.chip input[type="checkbox"],
.chip input[type="radio"] {
  display: none;
}

.chip span {
  display: inline-block;
  padding: 8px 14px;
  background: #252b3b;
  border: 1.5px solid #363d50;
  border-radius: 20px;
  color: #c4cad6;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  user-select: none;
}

.chip:hover span {
  border-color: #17E1A8;
  color: #fff;
}

.chip.selected span,
.chip input:checked + span {
  background: #17E1A8;
  border-color: #17E1A8;
  color: #1a1f2e;
  font-weight: 600;
}

.modal-submit {
  width: 100%;
  padding: 14px 24px;
  background: #17E1A8;
  color: #1a1f2e;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  margin-top: 24px;
}

.modal-submit:hover {
  background: #14c594;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(23, 225, 168, 0.3);
}

.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-submit i {
  font-size: 20px;
}

@media (max-width: 480px) {
  .modal-box {
    padding: 24px 20px;
    border-radius: 12px;
    max-height: 95vh;
  }

  .modal-title {
    font-size: 18px;
  }

  .chip span {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* Limpa Bacen page overrides */
.hero-bacen-img {
  display: block;
  width: min(100%, 500px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.28));
}

.diagnostic-preview {
  margin: 18px 0 20px;
}

.diagnostic-preview-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 225, 168, 0.8) rgba(226, 232, 240, 0.8);
}

.diagnostic-preview-carousel img {
  flex: 0 0 78%;
  max-width: 78%;
  height: auto;
  scroll-snap-align: start;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.features-section {
  padding: 80px 0;
  background: #f5f7fa;
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.features-section::before,
.pricing-section::before {
  content: '';
  display: block;
  width: min(240px, 55vw);
  height: 4px;
  margin: -82px auto 78px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #17E1A8, transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  border-color: rgba(23, 225, 168, 0.45);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e8fbf4;
  color: #0f9d58;
  font-size: 22px;
  margin-bottom: 18px;
}

.feature-card h3 {
  color: #2d3748;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #0f9d58 100%);
  color: #fff;
}

.cta-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #0f9d58;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.pricing-section {
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 100000;
      padding: 16px;
      backdrop-filter: blur(4px);
    }

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-nav {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    gap: 0.85rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section,
  .cta-section {
    padding: 60px 0;
  }

  .features-section::before,
  .pricing-section::before {
    margin: -62px auto 58px;
    width: min(180px, 58vw);
  }

  .cta-content h2 {
    font-size: 28px;
  }
}

    .modal-box {
      background: #1a1f2e;
      border-radius: 16px;
      width: 100%;
      max-width: 460px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 32px 28px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .modal-close {
      position: absolute;
      top: 12px;
      right: 16px;
      background: none;
      border: none;
      color: #8892a4;
      font-size: 28px;
      cursor: pointer;
      padding: 4px 8px;
      line-height: 1;
    }

    .modal-title {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 4px;
      padding-right: 30px;
    }

    .modal-subtitle {
      color: #8892a4;
      font-size: 14px;
      margin: 0 0 24px;
    }

    .modal-form .form-group {
      margin-bottom: 20px;
    }

    .modal-form .form-group label {
      display: block;
      color: #c4cad6;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .modal-form input[type="text"],
    .modal-form input[type="email"],
    .modal-form input[type="tel"] {
      width: 100%;
      padding: 12px 14px;
      background: #252b3b;
      border: 1.5px solid #363d50;
      border-radius: 10px;
      color: #fff;
      font-size: 15px;
      outline: none;
    }

    .modal-form input:focus {
      border-color: #17E1A8;
    }

    .field-help {
      color: #8892a4;
      font-size: 12px;
      margin: -2px 0 10px;
    }

    .form-error {
      color: #f87171;
      font-size: 12px;
      margin-top: 4px;
      display: block;
      min-height: 16px;
    }

    .toggle-group {
      display: flex;
      border-radius: 10px;
      overflow: hidden;
      border: 1.5px solid #363d50;
    }

    .toggle-btn {
      flex: 1;
      padding: 10px 16px;
      background: #252b3b;
      border: none;
      color: #8892a4;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .toggle-btn.active {
      background: #17E1A8;
      color: #1a1f2e;
    }

    .toggle-btn:not(:last-child) {
      border-right: 1px solid #363d50;
    }

    .chip-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip {
      display: inline-flex;
      cursor: pointer;
      margin: 0;
    }

    .chip input[type="radio"] {
      display: none;
    }

    .chip span {
      display: inline-block;
      padding: 8px 14px;
      background: #252b3b;
      border: 1.5px solid #363d50;
      border-radius: 20px;
      color: #c4cad6;
      font-size: 13px;
      font-weight: 500;
    }

    .chip.selected span,
    .chip input:checked + span {
      background: #17E1A8;
      border-color: #17E1A8;
      color: #1a1f2e;
      font-weight: 600;
    }

    .modal-submit {
      width: 100%;
      padding: 14px 24px;
      background: #17E1A8;
      color: #1a1f2e;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }

    .footer-complaint-link {
      display: inline-block;
      margin-top: 18px;
    }

    .footer-complaint-link img {
      max-width: 180px;
      height: auto;
    }

    @media (max-width: 480px) {
      .modal-box {
        padding: 24px 20px;
      }
    }

    .hero.bacen-hero {
      padding: 170px 0 90px;
      background: linear-gradient(135deg, #0f172a 0%, #0f9d58 54%, #17E1A8 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .hero.bacen-hero::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -16%;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .hero.bacen-hero .container {
      position: relative;
      z-index: 1;
    }

    .hero.bacen-hero h1,
    .hero.bacen-hero .hero-subtitle {
      color: #fff;
    }

    .hero.bacen-hero h1 span {
      color: #ffe066;
    }

    .hero.bacen-hero .hero-badge {
      background: rgba(255, 255, 255, 0.16);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(10px);
    }

    .hero.bacen-hero .hero-cta {
      background: #fff;
      color: #0f9d58;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }

    .bacen-visual-card {
      width: min(100%, 430px);
      margin: 0 auto;
      padding: 28px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
      color: #1f2937;
    }

    .bacen-visual-card .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 18px;
      border-bottom: 1px solid #e2e8f0;
      margin-bottom: 18px;
    }

    .bacen-visual-card .card-top span {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #0f9d58;
    }

    .bacen-visual-card .card-top i {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: #e8fbf4;
      color: #0f9d58;
      font-size: 20px;
    }

    .bacen-metric {
      display: grid;
      gap: 6px;
      padding: 14px 0;
      border-bottom: 1px solid #edf2f7;
    }

    .bacen-metric strong {
      font-size: 24px;
      color: #0f172a;
    }

    .bacen-metric span {
      font-size: 13px;
      color: #64748b;
    }

    .bacen-visual-card .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      padding: 10px 14px;
      border-radius: 999px;
      background: #f0fdfa;
      color: #0f9d58;
      font-size: 13px;
      font-weight: 700;
    }

    .solution-section,
    .comparison-section,
    .process-section,
    .pricing-section {
      padding: 80px 0;
      background: #fff;
    }

    .comparison-section {
      background: #f5f7fa;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 36px;
    }

    .comparison-card,
    .pricing-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    }

    .comparison-card.bacen {
      border-color: rgba(23, 225, 168, 0.45);
      box-shadow: 0 16px 40px rgba(23, 225, 168, 0.12);
    }

    .comparison-card h3,
    .pricing-card h3 {
      color: #2d3748;
      font-size: 22px;
      margin-bottom: 14px;
    }

    .comparison-card p,
    .pricing-card p {
      color: #64748b;
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: #4a5568;
      font-size: 15px;
      line-height: 1.5;
    }

    .check-list i {
      color: #17E1A8;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .solution-content {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 52px;
      align-items: start;
      margin-top: 36px;
    }

    .solution-text h2 {
      font-size: 34px;
      color: #2d3748;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .solution-text h2 span {
      color: #17E1A8;
    }

    .solution-text > p {
      color: #64748b;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .solution-steps {
      display: grid;
      gap: 18px;
    }

    .step {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
      align-items: start;
    }

    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #17E1A8;
      color: #fff;
      font-weight: 700;
    }

    .step-content {
      padding-bottom: 18px;
      border-bottom: 1px solid #e2e8f0;
    }

    .step-content h4 {
      font-size: 17px;
      color: #2d3748;
      margin-bottom: 6px;
    }

    .step-content p {
      color: #64748b;
      font-size: 14px;
      line-height: 1.7;
    }

    .diagnostic-pricing-card {
      position: sticky;
      top: 96px;
      background: #fff;
      border: 1px solid rgba(23, 225, 168, 0.45);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 18px 46px rgba(23, 225, 168, 0.13);
    }

    .diagnostic-pricing-card .badge {
      display: inline-block;
      background: #17E1A8;
      color: #fff;
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .diagnostic-pricing-card h3 {
      font-size: 25px;
      color: #2d3748;
      margin-bottom: 12px;
    }

    .diagnostic-pricing-card .price {
      color: #0f9d58;
      font-size: 38px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 8px;
    }

    .diagnostic-pricing-card .price-detail {
      color: #64748b;
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .diagnostic-pricing-card ul {
      list-style: none;
      display: grid;
      gap: 11px;
      margin: 20px 0 24px;
    }

    .diagnostic-pricing-card li {
      display: flex;
      gap: 10px;
      color: #475569;
      font-size: 14px;
      line-height: 1.45;
    }

    .diagnostic-pricing-card li i {
      color: #17E1A8;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .diagnostic-pricing-card .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: linear-gradient(135deg, #17E1A8 0%, #14c594 100%);
      color: #fff;
      padding: 14px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .diagnostic-pricing-card .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(23, 225, 168, 0.28);
    }

    .pricing-card {
      max-width: 860px;
      margin: 36px auto 0;
      border-color: rgba(23, 225, 168, 0.45);
    }

    .price-highlight {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin: 20px 0;
    }

    .price-box {
      background: #f0fdfa;
      border: 1px solid rgba(23, 225, 168, 0.35);
      border-radius: 12px;
      padding: 18px;
    }

    .price-box strong {
      display: block;
      color: #0f9d58;
      font-size: 22px;
      margin-bottom: 4px;
    }

    .diagnostic-note {
      margin-top: 18px;
      padding: 18px;
      border-radius: 12px;
      background: #f8fafc;
      border: 1px dashed #cbd5e1;
      color: #475569;
    }

    @media (max-width: 768px) {
      .comparison-grid,
      .solution-content,
      .price-highlight {
        grid-template-columns: 1fr;
      }

      .diagnostic-pricing-card {
        position: static;
      }

      .solution-text h2 {
        font-size: 28px;
      }

      .comparison-section,
      .solution-section,
      .process-section,
      .pricing-section {
        padding: 60px 0;
      }
    }
