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

:root {
  --g: #2d6a2d;
  --dg: #1a3d1a;
  --lg: #4caf50;
  --ag: #3a7d3a;
  --teal: #1a4a3a;
  --w: #fff;
  --gray: #666;
  --border: #e0ece0;
  --txt: #333;
  --bg: #f4f8f4;
  --ff: "Plus Jakarta Sans", sans-serif;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card:
    0 4px 24px rgba(45, 106, 45, 0.08), 0 1px 6px rgba(45, 106, 45, 0.04);
  --shadow-hover:
    0 16px 48px rgba(45, 106, 45, 0.14), 0 4px 14px rgba(45, 106, 45, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff);
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.07s;
}

.d2 {
  transition-delay: 0.14s;
}

.d3 {
  transition-delay: 0.21s;
}

.d4 {
  transition-delay: 0.28s;
}

.d5 {
  transition-delay: 0.35s;
}

/* ── SHARED PILL ── */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(45, 106, 45, 0.09);
  border: 1px solid rgba(45, 106, 45, 0.18);
  color: var(--g);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.pill-tag i {
  font-size: 10px;
}

/* ════════════════════════════════════════
   SECTION 1 – HOW IT WORKS
════════════════════════════════════════ */
#how-it-works {
  padding: 96px 24px 100px;
  background: linear-gradient(150deg, #eef6ee 0%, #f4f8f4 50%, #e6f2e6 100%);
  position: relative;
  overflow: hidden;
}

#how-it-works::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08), transparent 65%);
  pointer-events: none;
}

#how-it-works::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 74, 58, 0.07), transparent 65%);
  pointer-events: none;
}

.hiw-wrap {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* header */
.hiw-header {
  text-align: center;
  margin-bottom: 60px;
}

.sec-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--dg);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.sec-sub {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.6;
}

/* ── STEPPER ── */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 180px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(45, 106, 45, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 4px 16px rgba(45, 106, 45, 0.08);
}

.step-circle .si {
  font-size: 22px;
  color: var(--gray);
  transition:
    color 0.3s,
    transform 0.4s var(--ease-spring);
}

/* active */
.step-node.active .step-circle {
  background: linear-gradient(145deg, var(--lg), var(--g));
  border-color: transparent;
  box-shadow:
    0 0 0 7px rgba(76, 175, 80, 0.14),
    0 8px 28px rgba(45, 106, 45, 0.28);
  transform: scale(1.13);
}

.step-node.active .step-circle .si {
  color: #fff;
  transform: scale(1.1);
}

/* done */
.step-node.done .step-circle {
  background: linear-gradient(
    145deg,
    rgba(76, 175, 80, 0.22),
    rgba(45, 106, 45, 0.12)
  );
  border-color: rgba(76, 175, 80, 0.38);
}

.step-node.done .step-circle .si {
  color: var(--g);
}

/* hover */
.step-node:not(.active):hover .step-circle {
  border-color: rgba(76, 175, 80, 0.5);
  box-shadow: 0 6px 20px rgba(45, 106, 45, 0.14);
  transform: scale(1.06);
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  max-width: 110px;
  line-height: 1.35;
  transition: color 0.3s;
}

.step-node.active .step-label {
  color: var(--g);
}

/* connector */
.step-connector {
  flex: 1;
  height: 2px;
  position: relative;
  background: rgba(45, 106, 45, 0.12);
  max-width: 120px;
  align-self: flex-start;
  margin-top: 32px;
}

.step-connector-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lg), var(--g));
  transition: width 0.5s var(--ease-out);
  border-radius: 2px;
}

.step-connector-fill.filled {
  width: 100%;
}

/* ── CONTENT CARD ── */
.hiw-card-wrap {
  perspective: 1000px;
}

.hiw-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(224, 236, 224, 0.9);
  border-radius: 26px;
  padding: 48px 52px;
  box-shadow:
    0 20px 60px rgba(45, 106, 45, 0.09),
    0 4px 16px rgba(45, 106, 45, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.hiw-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(76, 175, 80, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* card pills container */
.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 106, 45, 0.07);
  border: 1px solid rgba(45, 106, 45, 0.16);
  color: var(--ag);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
}

.card-pill i {
  font-size: 10px;
  color: var(--lg);
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(45, 106, 45, 0.08);
  border: 1px solid rgba(45, 106, 45, 0.16);
  color: var(--g);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.card-title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--dg);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card-desc {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 400;
}

.card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-icon-main {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(76, 175, 80, 0.12),
    rgba(45, 106, 45, 0.08)
  );
  border: 2px solid rgba(76, 175, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.card-icon-main i {
  font-size: 52px;
  color: var(--g);
}

.card-icon-main::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lg), var(--g));
  top: -6px;
  right: 16px;
  box-shadow: 0 2px 8px rgba(45, 106, 45, 0.35);
}

.card-icon-main::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.5);
  bottom: 6px;
  left: -4px;
}

/* transition */
.hiw-card.transitioning .card-content,
.hiw-card.transitioning .card-visual {
  opacity: 0;
  transform: translateY(16px);
}

.card-content,
.card-visual {
  transition:
    opacity 0.32s var(--ease-out),
    transform 0.32s var(--ease-out);
}

/* CTA */
.hiw-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--g), var(--dg));
  color: #fff;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(45, 106, 45, 0.28);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s ease;
}

.btn-g:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(45, 106, 45, 0.36);
}

.btn-g i {
  transition: transform 0.3s var(--ease-spring);
}

.btn-g:hover i {
  transform: translateX(4px);
}

/* ════════════════════════════════════════
   SECTION 2 – TRUST BANNER
════════════════════════════════════════ */
#trust {
  padding: 0 24px 80px;
}

.trust-card {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(
    130deg,
    #0a1f0a 0%,
    #1a3d1a 35%,
    #0f3328 65%,
    #071507 100%
  );
  border-radius: 26px;
  padding: 52px 60px;
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(10, 31, 10, 0.28);
}

.trust-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1), transparent 65%);
  pointer-events: none;
}

.trust-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 74, 58, 0.2), transparent 65%);
  pointer-events: none;
}

.trust-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(76, 175, 80, 0.55),
    transparent
  );
  animation: shimL 3s ease infinite;
}

@keyframes shimL {
  0% {
    opacity: 0.4;
    transform: translateX(-100%);
  }

  100% {
    opacity: 0.4;
    transform: translateX(100%);
  }
}

.trust-icon-wrap {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.13);
  border: 2px solid rgba(76, 175, 80, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.trust-icon-wrap i {
  font-size: 36px;
  color: #7ed87e;
}

.trust-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.28);
  color: #7ed87e;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.trust-pill i {
  font-size: 10px;
}

.trust-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 11px;
  letter-spacing: -0.02em;
}

.trust-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-weight: 400;
}

.trust-link {
  color: #8fed8f;
  text-decoration: none;
  border-bottom: 1px dashed rgba(143, 237, 143, 0.4);
  font-weight: 600;
  transition: color 0.2s;
}

.trust-link:hover {
  color: #b4ffb4;
}

.trust-stat {
  flex-shrink: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════
   SECTION 3 – FAQ
════════════════════════════════════════ */
#faq {
  padding: 96px 24px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#faq::before {
  content: "\f0f1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 340px;
  color: rgba(45, 106, 45, 0.03);
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}

.faq-wrap {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
}

.faq-left .pill-tag {
  margin-bottom: 16px;
}

.faq-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dg);
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.faq-sub-green {
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 700;
  color: var(--ag);
  margin-bottom: 12px;
}

.faq-left p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 400;
}

/* feature cards */
.faq-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fcard {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 236, 224, 0.9);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease,
    border-color 0.3s;
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 175, 80, 0.32);
}

.fcard-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.14),
    rgba(45, 106, 45, 0.09)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.35s var(--ease-spring);
}

.fcard:hover .fcard-icon {
  transform: scale(1.1) rotate(-4deg);
}

.fcard-icon i {
  font-size: 21px;
  color: var(--g);
}

.fcard h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dg);
  margin-bottom: 5px;
}

.fcard p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 400;
}

/* accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(45, 106, 45, 0.05);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.faq-item.open {
  border-color: rgba(76, 175, 80, 0.42);
  box-shadow: 0 6px 24px rgba(45, 106, 45, 0.09);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.faq-q-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(45, 106, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.faq-q-icon i {
  font-size: 14px;
  color: var(--g);
}

.faq-item.open .faq-q-icon {
  background: rgba(45, 106, 45, 0.14);
}

.faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--dg);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item.open .faq-q-text {
  color: var(--g);
}

.faq-chevron {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(45, 106, 45, 0.07);
  border: 1px solid rgba(45, 106, 45, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.faq-chevron i {
  font-size: 12px;
  color: var(--g);
  transition:
    transform 0.4s var(--ease-out),
    color 0.3s;
}

.faq-item.open .faq-chevron {
  background: var(--g);
}

.faq-item.open .faq-chevron i {
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

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

.faq-a-inner {
  padding: 0 22px 20px 72px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.78;
  font-weight: 400;
}

.faq-a-inner ul {
  padding-left: 18px;
  margin-top: 8px;
}

.faq-a-inner li {
  margin-bottom: 5px;
}

.faq-extra {
  display: none;
}

.faq-cta {
  text-align: center;
  margin-top: 10px;
}

.btn-go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--g), var(--dg));
  color: #fff;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(45, 106, 45, 0.25);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s ease;
}

.btn-go:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(45, 106, 45, 0.34);
}

.btn-go i {
  transition: transform 0.3s var(--ease-spring);
}

.btn-go:hover i {
  transform: translateY(3px);
}

/* ════════════════════════════════════════
   SECTION 4 – TESTIMONIALS  (Infinite Marquee)
════════════════════════════════════════ */
#testi {
  padding: 96px 0 108px;
  background: linear-gradient(175deg, #eef6ee 0%, #f4f8f4 100%);
  position: relative;
  overflow: hidden;
}

#testi::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06), transparent 65%);
  pointer-events: none;
}

.testi-inner {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.testi-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testi-header .pill-tag {
  margin-bottom: 18px;
}

.testi-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dg);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.testi-sub {
  font-size: 15.5px;
  color: var(--gray);
  font-weight: 400;
}

/* ── MARQUEE OUTER (clips + fades edges) ── */
.testi-marquee-outer {
  position: relative;
  overflow: hidden;
  /* soft edge fades */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  padding: 14px 0 18px;
  cursor: grab;
}
.testi-marquee-outer.is-dragging {
  cursor: grabbing;
}

/* ── MARQUEE TRACK ── */
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  /* animation driven by JS requestAnimationFrame — no CSS animation */
  transition: none;
}

/* ── CARD ── */
.tc {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 236, 224, 0.95);
  border-radius: 22px;
  padding: 24px 22px 22px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
  /* grid: 4 rows — top / badges / review(flex) / city */
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease,
    border-color 0.3s;
  user-select: none;
}

.tc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 175, 80, 0.28);
}

/* row 1: avatar + name/city */
.tc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 12px rgba(45, 106, 45, 0.25);
}

.tc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dg);
  line-height: 1.3;
}

.tc-city-sub {
  font-size: 11.5px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-weight: 400;
}
.tc-city-sub i {
  font-size: 9px;
  color: var(--lg);
}

/* row 2: badges */
.tc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tc-badge-v {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(45, 106, 45, 0.07);
  border: 1px solid rgba(45, 106, 45, 0.15);
  color: var(--g);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
}
.tc-badge-v i {
  font-size: 9px;
}

.tc-plan {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.1),
    rgba(45, 106, 45, 0.07)
  );
  border: 1px solid rgba(76, 175, 80, 0.2);
  color: var(--ag);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
}
.tc-plan i {
  font-size: 9px;
}

/* row 3: review text (stretches to fill) */
.tc-review {
  font-size: 13.5px;
  color: #555;
  line-height: 1.72;
  font-weight: 400;
  display: -webkit-box;
  /* -webkit-line-clamp: 5; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  align-self: start;
}

/* row 4: city footer — NO border/separator */
.tc-city-full {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  padding-top: 4px;
}
.tc-city-full i {
  font-size: 10px;
  color: var(--lg);
}

/* ════ RESPONSIVE ════ */
@media (max-width: 900px) {
  .hiw-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
    text-align: center;
  }

  .card-visual {
    justify-content: center;
  }

  .card-pills {
    justify-content: center;
  }

  .faq-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-connector {
    max-width: 80px;
  }

  .trust-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 28px;
  }

  .trust-stat {
    display: flex;
    gap: 32px;
    align-items: center;
  }
}

@media (max-width: 600px) {
  #how-it-works,
  #faq {
    padding: 60px 16px 68px;
  }

  .hiw-card {
    padding: 28px 18px;
  }

  .step-circle {
    width: 54px;
    height: 54px;
  }

  .step-circle .si {
    font-size: 18px;
  }

  .step-connector {
    max-width: 44px;
  }

  .faq-a-inner {
    padding-left: 22px;
  }

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

  .testi-header {
    padding: 0 16px;
  }

  .trust-card {
    padding: 32px 18px;
  }
}
