:root {
  --primary: #3b82f6;
  --secondary: #6366f1;
  --highlight: #6366f1;
  --gradient: linear-gradient(to right, #3b82f6, #8b5cf6);
  --glass-bg: rgba(31, 41, 55, 0.9);
  --glass-bg-purple: rgba(59, 7, 100, 0.85);
  --page-bg: linear-gradient(135deg, #0f0f1c 0%, #1a1a2e 100%);
  --text-primary: #e5e7eb;
  --text-secondary: #d1d5db;
  --text-tertiary: #a1a1aa;
  --text-purple: #6366f1;
  --card-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  --card-shadow-purple: 0 4px 10px #3b82f6;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-purple: linear-gradient(45deg, #7c3aed, #c084fc);
  --bright-purple: #6366f1;
  --value-bg: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--page-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

h2 span {
  color: var(--secondary);
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.btn-primary, .btn-secondary, .cta-btn-start, .cta-btn-mockup {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0.5rem;
  position: relative;
  overflow: hidden;

}

.btn-primary, .cta-btn-start {
  background: var(--gradient);
  color: var(--text-primary);
  animation: pulse 2s infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-btn-mockup {
  background: linear-gradient(to right, #8b5cf6, #3b82f6);
  color: var(--text-primary);
  animation: pulse 2s infinite 0.5s;
}

.btn-primary:hover, .btn-secondary:hover, .cta-btn-start:hover, .cta-btn-mockup:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
  animation: none;
}

.btn-primary::before, .cta-btn-start::before, .cta-btn-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-primary:hover::before, .cta-btn-start:hover::before, .cta-btn-mockup:hover::before {
  left: 100%;
}
/* 
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
} */

/* Hero Section */
#hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
}

#hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#hero h1 span {
  color: var(--secondary);
}

#hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.carousel-container {
  position: relative;
  height: 280px;
  margin-top: 2rem;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotate 18s infinite linear;
}

.carousel.paused {
  animation-play-state: paused;
}

@keyframes rotate {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.carousel-card {
  position: absolute;
  width: 220px;
  height: 150px;
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
  transform: rotateY(calc(var(--index) * 90deg)) translateZ(320px);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}

.carousel-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-card:hover, .carousel-card.focused {
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
  opacity: 1;
  transform: rotateY(calc(var(--index) * 90deg)) translateZ(360px) scale(1.15);
}

.carousel-card:hover::after, .carousel-card.focused::after {
  opacity: 0.4;
}

/* Services Section */
#services-grid {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

#services-grid h2 span {
  color: var(--highlight);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services-grid p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  animation: slideGradient 15s linear infinite;
  z-index: -1;
}

@keyframes slideGradient {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.service-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-purple);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 6px;
  background: var(--gradient);
  transition: left 0.5s ease;
}

.service-card:hover::after {
  left: 0;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-primary);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-purple);
}

/* Value Narrative Section */
#value-narrative {
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--value-bg);
  position: relative;
  overflow: hidden;
}

.value-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 4rem;
  flex-wrap: wrap;
}

.value-text {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.value-text h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.value-text h2 span {
  color: var(--bright-purple);
}

.value-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}
.value-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checklist {
  background: var(--checklist-gradient);
  border: 1px solid var(--glass-border-purple);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow-purple);
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.checklist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.25), transparent 70%); */
  opacity: 0.6;
  z-index: 0;
}

.checklist-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bright-purple);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checklist-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.checklist-item:hover {
  transform: translateX(8px);
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 2px 8px rgba(167, 139, 250, 0.3);
}

.checklist-item::before {
  content: '✔';
  margin-right: 1rem;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.checklist-item:hover::before {
  transform: scale(1.2);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 10%;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  width: 15px;
  height: 15px;
  top: 50%;
  left: 80%;
  animation-duration: 15s;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 25px;
  height: 25px;
  top: 70%;
  left: 30%;
  animation-duration: 10s;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-50px); }
}

/* Feature Tabs Section */
#feature-tabs {
  padding: 6rem 2rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

#feature-tabs h2 {
  font-size: 3.2rem;
  margin-bottom: 4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab {
  padding: 1rem 2.5rem;
  background: var(--glass-bg);
  border: 2px solid transparent;
  border-image: var(--gradient-border) 1;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.tab::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s;
}

.tab:hover::after {
  left: 100%;
}

.tab:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.tab.active {
  background: var(--gradient);
  color: var(--text-primary);
}

.tab-content {
  display: none;
  perspective: 1200px;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.feature-card {
  background: var(--glass-bg);
  border: 2px solid transparent;
  border-image: var(--gradient-border) 1;
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-12px) rotateX(8deg);
  box-shadow: var(--card-shadow);
}

.feature-card::before {
  content: '✦';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Testimonials Section */
#testimonials {
  padding: 5rem 1.5rem;
  background: var(--page-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

#testimonials h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

#testimonials h2 span {
  color: var(--text-purple);
  background: none;
  font-weight: 600;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  perspective: 1200px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 2rem;
  width: 330px;
  min-height: 220px;
  box-shadow: var(--card-shadow);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.8s ease;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  animation: cardFadeIn 1.5s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-15px) translateZ(40px) rotateY(6deg);
  box-shadow: var(--card-shadow-purple);
  border-color: var(--glass-border-purple);
}

.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 1;
  quotes: "“" "”";
}

.testimonial-card p::before,
.testimonial-card p::after {
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: absolute;
}

.testimonial-card p::before {
  content: open-quote;
  top: -0.8rem;
  left: -0.4rem;
}

.testimonial-card p::after {
  content: close-quote;
  bottom: -1.8rem;
  right: -0.4rem;
}

.testimonial-card cite {
  font-style: normal;
  color: var(--bright-purple);
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-top: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.2;
  transition: left 1s ease;
  z-index: 0;
}

.testimonial-card:hover::before {
  left: 100%;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.carousel-btn {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
  box-shadow: var(--card-shadow);
}

.carousel-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: RGBA(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.carousel-btn:hover::before {
  width: 200px;
  height: 200px;
}

.carousel-btn:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: var(--card-shadow-purple);
}

.carousel-btn span {
  position: relative;
  z-index: 1;
}

/* FAQ Section */
#faqs {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-purple);
  border-color: var(--glass-border-purple);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-purple);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0 1.5rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1.5rem;
}


.faq-item::before {
  left: 100%;
}

/* Final CTA Section */
#final-cta {
  padding: 5rem 1.5rem;
  color: var(--text-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--page-bg);
  max-width: 100%;
}

#final-cta h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

#final-cta h2 span {
  color: var(--text-purple);
  background: none;
  font-weight: 600;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  animation: fadeIn 1.5s ease-out;
}

#feature-tabs .btn-container{
  display: flex;
  justify-content: center;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#final-cta div{
  margin-top: 20px;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(50px) rotateY(12deg) translateZ(-40px); }
  to { opacity: 1; transform: translateY(0) rotateY(0) translateZ(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  #services-grid h2, #feature-tabs h2, #testimonials h2, #faqs h2, #final-cta h2 {
      font-size: 2rem;
  }

  #services-grid p {
      font-size: 1rem;
  }

  .services-container {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
  }

  .service-card {
      padding: 1.5rem;
  }

  .service-card h3 {
      font-size: 1.3rem;
  }

  .service-icon {
      width: 50px;
      height: 50px;
  }

  .service-icon svg {
      width: 28px;
      height: 28px;
  }

  .value-container {
      flex-direction: column;
      gap: 2rem;
  }

  .value-text h2 {
      font-size: 2.2rem;
      text-align: center;
  }

  .value-text p {
      font-size: 1rem;
      text-align: center;
      max-width: 100%;
  }

  .btn-primary, .cta-btn-start, .cta-btn-mockup {
      display: block;
      margin: 0 auto;
      text-align: center;
  }
  .btn-secondary{
    width: 90%;
    text-align: center;
  }
  
  .checklist {
      padding: 1.5rem;
      max-width: 100%;
  }

  .checklist-title {
      font-size: 1.3rem;
  }

  .checklist-item {
      font-size: 1rem;
      padding: 0.6rem 0.8rem;
  }

  .value-visual {
      margin-top: 10px;
      width: 65vw;
  }

  .tabs {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
  }

  .tab {
      width: 80%;
      text-align: center;
  }

  .tab-content.active {
      grid-template-columns: 1fr;
  }

  .feature-card {
      padding: 2rem;
  }

  .testimonial-container {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      height: 700px;
  }

  .testimonial-card {
      width: 85%;
      max-width: 360px;
      padding: 1.8rem;
      min-height: 200px;
      position: absolute;
      transform-origin: center;
  }

  .carousel-btn {
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
  }

  .cta-description {
      font-size: 1rem;
      max-width: 90%;
  }
  #final-cta .btn-secondary{
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  #services-grid, #testimonials, #faqs, #final-cta {
      padding: 3rem 1rem;
  }

  .services-container {
      grid-template-columns: 1fr;
  }

  .service-card {
      padding: 1.2rem;
  }

  #value-narrative {
      padding: 2rem 1rem;
  }

  .value-text h2 {
      font-size: 1.8rem;
  }

  .checklist {
      padding: 1rem;
  }

  .checklist-item {
      font-size: 0.9rem;
  }

  .value-visual {
      width: 90vw;
  }

  #feature-tabs {
      padding: 4rem 1rem;
  }

  #feature-tabs h2 {
      font-size: 2rem;
  }

  .btn-secondary{
    width: 90%;
    text-align: center;
  }
  .tab {
      width: 90%;
  }

  .testimonial-container {
      height: 600px;
      gap: 0;
  }

  .testimonial-card {
      width: 90%;
      padding: 1.5rem;
      min-height: 180px;
      border-radius: 1rem;
  }

  .testimonial-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.2rem;
  }

  .testimonial-card p::before,
  .testimonial-card p::after {
      font-size: 1.5rem;
  }

  .testimonial-card p::before {
      top: -0.6rem;
      left: -0.3rem;
  }

  .testimonial-card p::after {
      bottom: -1.5rem;
      right: -0.3rem;
  }

  .testimonial-card cite {
      font-size: 0.85rem;
      margin-top: 1rem;
  }

  .faq-question {
      font-size: 1rem;
      padding: 1.2rem;
  }

  .faq-answer {
      font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
      padding: 1.2rem;
  }

  .faq-question::after {
      font-size: 1.3rem;
  }

  #final-cta h2 {
      font-size: 1.8rem;
      letter-spacing: 1px;
  }

  .cta-description {
      font-size: 0.95rem;
      margin-bottom: 2rem;
  }

  .cta-buttons {
      flex-direction: column;
      gap: 1rem;
  }

  .cta-btn-start, .cta-btn-mockup {
      padding: 0.7rem 1.5rem;
      font-size: 0.85rem;
      width: 100%;
      max-width: 300px;
  }
  #final-cta .btn-secondary{
    margin-top: 20px;
  }
}

@media (max-width: 360px) {
  .testimonial-container {
      height: 550px;
  }

  .testimonial-card {
      width: 95%;
      padding: 1.2rem;
  }

  #testimonials h2, #faqs h2 {
      font-size: 1.6rem;
  }

  .faq-question {
      font-size: 0.95rem;
      padding: 1rem;
  }

  .faq-answer {
      font-size: 0.85rem;
  }

  #final-cta h2 {
      font-size: 1.6rem;
  }

  .cta-description {
      font-size: 0.9rem;
  }

  .cta-btn-start, .cta-btn-mockup {
      padding: 0.6rem 1.2rem;
  }
  .btn-secondary{
    width: 90%;
    text-align: center;
  }
  #final-cta .btn-secondary{
    margin-top: 20px;
  }
}

@media (min-width:768px){
  .btn-primary, .btn-secondary{
    padding: 1rem 5rem;
    font-size: 1.3rem;
  }
}