/* ============================================
   SECTION: TESTIMONIALS (marquee)
   ============================================ */
.testimonial-section {
  background: var(--color-primary);
}

.testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}

.testimonial-title-wrap {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.testimonial-title-wrap .section-eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.testimonial-title {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.testimonial-mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 55s linear infinite;
}

.testimonial-card {
  flex: none;
  width: 360px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 28px;
  margin-right: 18px;
}

.testimonial-quote-mark {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #ffc400;
  margin-bottom: 14px;
}

.testimonial-text {
  flex: 1;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.8);
  margin-bottom: 22px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 12.5px;
  color: rgba(13, 27, 42, 0.55);
}

/* ============================================
   SECTION: FAQ
   ============================================ */
.faq-section {
  background: #fff;
}

.faq-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 32px;
}

.faq-title-wrap {
  max-width: 42rem;
  margin: 0 auto 48px;
  text-align: center;
}

.faq-title {
  font-size: var(--text-h2);
  font-weight: 800;
  color: var(--color-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

@media (min-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-edge);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  text-align: left;
}

.faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-toggle-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-neutral);
  color: var(--color-primary);
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-text {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(13, 27, 42, 0.65);
}

/* ============================================
   SECTION: GOALS (interactive selector)
   ============================================ */
.goals-section {
  background: var(--color-canvas);
}

.goals-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}

.goals-title-wrap {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.goals-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.62);
  margin-top: 16px;
}

.goals-layout {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 22px;
}

.goals-buttons {
  flex: 1 1 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.goal-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  padding: 18px;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 14px;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.goal-btn.active {
  background: var(--color-tertiary);
  border-color: var(--color-secondary);
  box-shadow: 0 12px 30px -16px rgba(13, 27, 42, 0.25);
  transform: translateY(-2px);
}

.goal-btn-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc400;
  opacity: 0;
  transition: opacity 0.2s;
}

.goal-btn.active .goal-btn-dot {
  opacity: 1;
}

.goal-btn-label {
  font-size: 15px;
  font-weight: 700;
}

.goals-recommend {
  align-self: stretch;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  background: var(--color-primary);
  color: #fff;
  border-radius: 18px;
  padding: 32px 30px;
}

.goals-recommend-eyebrow {
  color: var(--color-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.goals-recommend-title {
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
}

.goals-recommend-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 14px;
}

.goals-services {
  margin-top: 24px;
}

.goals-services-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.goals-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.goals-service-tag {
  background: rgba(255, 212, 0, 0.16);
  border: 1px solid rgba(255, 212, 0, 0.34);
  border-radius: 9999px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
}

.goals-kpi {
  margin-top: 22px;
}

.goals-kpi-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.goals-kpi-value {
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
}

.goals-cta {
  align-self: flex-start;
  margin-top: 26px;
}

/* ============================================
   SECTION: CTA (call to action)
   ============================================ */
.cta-section {
  background: var(--color-tertiary);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}

.cta-box {
  position: relative;
  background: var(--color-secondary);
  border-radius: 24px;
  overflow: hidden;
  padding: 72px 40px;
  text-align: center;
}

.cta-decor-1 {
  position: absolute;
  top: -70px;
  left: -30px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.cta-decor-2 {
  position: absolute;
  bottom: -90px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.cta-decor-img {
  display: none;
  position: absolute;
  bottom: 0;
  left: -35px;
  height: 400px;
  width: auto;
  pointer-events: none;
}

@media (min-width: 1280px) {
  .cta-decor-img {
    display: block;
  }
}

.cta-content {
  position: relative;
}

.cta-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 680px;
  margin: 0 auto;
}

.cta-desc {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.8);
  max-width: 560px;
  margin: 20px auto 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.cta-actions .btn-primary {
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  padding: 17px 32px;
}

.cta-footnote {
  font-size: 13px;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.58);
  margin-top: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-primary);
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 32px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.footer-brand {
  min-width: 200px;
}

.footer-logo {
  height: 43px;
  margin-left: -15px;
  width: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 260px;
  margin: 14px 0 16px;
}

.footer-email {
  color: var(--color-secondary);
  font-size: 13.5px;
  font-weight: 500;
}

.footer-heading {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
  line-height: 1.6;
}