:root {
  --teps-orange: #f5a524;
  --teps-orange-dark: #e8961a;
  --teps-navy: #0c2436;
  --teps-navy-2: #0a2030;
  --ink: #1c1c1c;
  --muted: #7a7a7a;
  --line: #ececec;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(1100px 560px at 92% -40px, rgba(245, 165, 36, .30), transparent 58%),
    radial-gradient(900px 480px at 8% -100px, rgba(245, 165, 36, .12), transparent 60%),
    #fff;
  background-repeat: no-repeat;
}

.fw-600 {
  font-weight: 600;
}

.lang-ico {
  height: 20px;
  width: auto;
  display: block;
}

/* ---------- HERO ---------- */
.home-hero {
  position: relative;
  padding: 70px 0 60px;
}

.home-hero-title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--teps-navy);
  margin-bottom: 18px;
  text-wrap: balance;
}

.home-hero-title .text-teps {
  white-space: nowrap;
}

.home-hero-sub {
  color: #5f6b74;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

.social-proof {
  margin-bottom: 30px;
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .10);
}

.avatar-stack .avatar:first-child {
  margin-left: 0;
}

.proof-text {
  color: var(--teps-navy);
  font-weight: 500;
  font-size: .95rem;
}

.hero-cta {
  margin-top: 4px;
}

.btn-outline-teps {
  background: #fff;
  border: 1.5px solid var(--teps-orange);
  color: var(--teps-orange);
  font-weight: 600;
  transition: all .2s ease;
}

.btn-outline-teps:hover {
  background: var(--teps-orange);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- SECTION TITLES ---------- */
.home-section-title {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--teps-navy);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.title-diamond {
  position: relative;
  left: 45px;
  width: 4rem;
  height: auto;
  display: inline-block;
}

/* ---------- PARTNERS MARQUEE ---------- */
.partners-section {
  padding: 40px 0 70px;
}

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-chip {
  flex: 0 0 auto;
  width: 132px;
  height: 74px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #9aa4ad;
  font-size: .9rem;
  letter-spacing: .5px;
  padding: .5rem;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------- STEPS SERVICE ---------- */
.service-section {
  padding: 40px 0 80px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 30px;
  height: 100%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(245, 165, 36, .14);
}

.service-ico {
  margin-bottom: 22px;
}

.service-ico img {
  height: 64px;
  width: auto;
}

.service-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teps-navy);
  margin-bottom: 14px;
}

.service-desc {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- BENTO ---------- */
.bento-section {
  padding: 20px 0 90px;
}

.bento-card {
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .04);
}

.bento-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.bento-ico img {
  height: 24px;
  width: auto;
}

.bento-ico i {
  font-size: 1.15rem;
  color: var(--teps-orange);
}

.bento-ico-light {
  background: rgba(255, 255, 255, .55);
}

.bento-ico-soft {
  background: #fdeccd;
}

.bento-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--teps-navy);
  margin-bottom: 12px;
}

.bento-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bento-desc-light {
  color: #c6d2db;
}

.bento-yellow {
  background: var(--teps-orange);
  border: none;
  display: flex;
  flex-direction: column;
}

.bento-yellow .bento-title {
  color: var(--teps-navy);
}

.bento-yellow .bento-desc {
  color: #5c4410;
  max-width: 260px;
}

.bento-tag {
  margin-top: auto;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .6px;
  color: var(--teps-navy);
}

.bento-split {
  display: flex;
  align-items: center;
  gap: 26px;
}

.bento-media {
  flex: 0 0 46%;
  max-width: 46%;
}

.bento-body {
  flex: 1;
}

.img-ph {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, #f2f3f5, #f2f3f5 10px, #e9eaed 10px, #e9eaed 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-ph span {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: .78rem;
  color: #9aa4ad;
}

.img-ph-dark {
  background: repeating-linear-gradient(45deg, #12222f, #12222f 10px, #0e1c27 10px, #0e1c27 20px);
}

.img-ph-dark span {
  color: #5d7383;
}

.bento-dark {
  background: var(--teps-navy);
  border: none;
  display: flex;
  flex-direction: column;
}

.play-btn {
  margin-top: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .55);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s ease;
}

.play-btn:hover {
  background: var(--teps-orange);
  border-color: var(--teps-orange);
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 20px 0 90px;
}

.faq-card {
  background: #fff;
  max-width: 940px;
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .06);
  border: 1px solid #f2f2f2;
}

.faq-heading {
  text-align: center;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--teps-orange);
  letter-spacing: .5px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.faq-pill {
  background: #fdeccd;
  color: var(--teps-orange);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .2s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.open {
  border-color: #f0f0f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.faq-item:not(.open) {
  background: #f7f7f8;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: var(--teps-navy);
  text-align: left;
}

.faq-icon {
  color: var(--teps-orange);
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

@media(max-width:991px) {
  .home-hero-title {
    font-size: 1.9rem;
  }

  .nav-actions {
    margin-top: 14px;
  }
}

@media(max-width:575px) {
  .bento-split {
    flex-direction: column;
    align-items: stretch;
  }

  .bento-media {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .faq-card {
    padding: 30px 20px;
  }
}