/* ================= HERO SECTION ONLY ================= */

.hero-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section .hero-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .hero-content {
  max-width: 950px;
  position: relative;
  z-index: 2;
}

.hero-section .badge {
  display: inline-block;
  background: #ececec;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.hero-section .hero-content h1 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
  margin: 10px 0;
}

.hero-section .hero-text {
  max-width: 600px;
  margin: 20px auto 40px;
  font-size: 18px;
  color: #161616;
  font-weight: 300;
}

.hero-section .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-section .btn {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-section .hbtn-primary {
  background: #fbcd1c;
  color: #161616;
}

.hero-section .hbtn-primary:hover {
  transform: translateY(-2px);
}

.hero-section .btn-secondary {
  background: #ececec;
  color: #161616;
}

/* SVG background */
.hero-section .hero-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-section .hero-svg svg {
  width: 392px;
  max-width: 90vw;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 32px;
  }

  .hero-section .hero-text {
    font-size: 16px;
  }

  .hero-section .btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section .hero-svg svg {
    width: 250px;
  }
}



/* ========== STATS SECTION (exact Tailwind mapping) ========== */

.stats-section {
  padding-left: 1.5rem;
  /* px-6 */
  padding-right: 1.5rem;
  /* px-6 */
  padding-top: 5rem;
  /* pt-20 */
  padding-bottom: 5rem;
  /* pb-20 */
}

.stats-section .stats-container {
  max-width: 1200px;
  /* max-w-[1200px] */
  margin-left: auto;
  /* mx-auto */
  margin-right: auto;
}

.stats-section .stats-inner {
  max-width: 900px;
  /* max-w-[900px] */
  margin-left: auto;
  /* mx-auto */
  margin-right: auto;
}

.stats-section .stats-row {
  display: flex;
  /* flex */
  flex-direction: column;
  /* flex-col */
  justify-content: space-between;
  /* justify-between */
  align-items: center;
  /* items-center */
  gap: 2.5rem;
  /* gap-10 */
}

/* md:flex-row */
@media (min-width: 768px) {
  .stats-section .stats-row {
    flex-direction: row;
  }
}

.stats-section .stat-box {
  display: flex;
  /* flex */
  align-items: center;
  /* items-center */
  gap: 1.25rem;
  /* gap-5 */
  width: 13rem;
  /* w-52 */
}

.stats-section .stat-icon {
  width: 2.5rem;
  /* w-10 */
  display: flex;
  justify-content: center;
  /* justify-center */
}

.stats-section .stat-icon img {
  max-width: 100%;
  height: auto;
}

.stats-section .stat-text h2 {
  font-size: 1.875rem;
  /* text-3xl */
  line-height: 2.25rem;
  font-weight: 600;
  /* font-semibold */
  letter-spacing: -0.025em;
  /* tracking-tight */
  margin: 0;
}

.stats-section .stat-text p {
  font-size: 0.875rem;
  /* text-sm */
  color: #161616;
  /* text-[#161616] */
  margin: 0;
  line-height: 1.25rem;
}


.seo-section {
  background: #ffffff;
  padding: 80px 24px;
}

.seo-inner-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-intro-wrap {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.seo-pill {
  font-weight: 300;
  font-size: 16px;
  line-height: 101%;
  background: #ececec;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.seo-main-title {
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 123%;
  color: #161616;
}

.seo-title-muted {
  color: #8e8e8e;
}

.seo-intro-text {
  max-width: 800px;
  margin: 24px auto 40px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #161616;
}

.seo-content-wrap {
  width: 100%;
}

.seo-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.seo-card {
  background: #eeeeee;
  padding: 32px;
  border-radius: 16px;
}

.seo-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.seo-card-title {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #161616;
}

.seo-card-copy {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #8e8e8e;
}

.seo-flex-1 {
  flex: 1 1 0%;
}

.seo-flex-2 {
  flex: 2 1 0%;
}

.seo-mt-40 {
  margin-top: 40px;
}

.seo-mb-40 {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .seo-row {
    flex-direction: row;
  }

  .seo-main-title {
    font-size: 40px;
  }

  .seo-md-mb-40 {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .seo-main-title {
    font-size: 60px;
  }
}


.seo-unique-section {
  background: #ffffff;
  padding: 80px 24px;
}

.seo-unique-container {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-unique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.seo-unique-content {
  padding-top: 0;
  padding-bottom: 0;
}

.seo-unique-pill {
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 8px 16px;
  border-radius: 20px;
  background: #fbcd1c;
  font-weight: 300;
  font-size: 16px;
  line-height: 90%;
  color: #161616;
}

.seo-unique-title {
  margin: 0;
  font-weight: 600;
  font-size: 30px;
  line-height: 123%;
  color: #161616;
}

.seo-unique-description {
  margin: 24px 0 16px 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #161616;
}

.seo-unique-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #161616;
}

.seo-unique-item {
  display: flex;
  gap: 4px;
}

.seo-unique-item+.seo-unique-item {
  margin-top: 8px;
}

.seo-unique-arrow {
  white-space: nowrap;
}

.seo-unique-highlight {
  background: #fbcd1c;
  border-radius: 24px;
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

.seo-unique-highlight-title {
  margin: 0;
}

.seo-unique-number {
  font-weight: 600;
  font-size: 100px;
  line-height: 1;
  color: #161616;
}

.seo-unique-subtitle {
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: #161616;
}

.seo-unique-note {
  margin: 24px 0 0 0;
  font-size: 18px;
  line-height: 28px;
  color: #695507;
}

@media (min-width: 768px) {
  .seo-unique-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-unique-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .seo-unique-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .seo-unique-title {
    font-size: 50px;
  }
}


.seo-process-section {
  background: #ffffff;
  padding: 80px 24px;
}

.seo-process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-process-intro-wrap {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.seo-process-intro-center {
  width: 100%;
}

.seo-process-pill {
  margin: 0 0 10px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 101%;
  background: #ececec;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 20px;
  color: #161616;
}

.seo-process-title {
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 123%;
  color: #161616;
}

.seo-process-subtext {
  max-width: 800px;
  margin: 24px auto 40px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #161616;
}

.seo-process-content {
  width: 100%;
}

.seo-process-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  border-radius: 24px;
  padding: 24px;
  background: #eeeeee;
  margin-bottom: 28px;
}

.seo-process-card-head {
  display: flex;
  gap: 32px;
  align-items: center;
}

.seo-process-card-number {
  font-size: 62px;
  font-weight: 700;
  color: #FBCD1C;
  -webkit-text-stroke: 3px #000;
}

.seo-process-card-title {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #161616;
}

.seo-process-card-copy {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #8e8e8e;
}

@media (min-width: 768px) {
  .seo-process-title {
    font-size: 40px;
  }

  .seo-process-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .seo-process-title {
    font-size: 60px;
  }
}

/* Shared section shell */
.seo-stories-section,
.seo-faq-section,
.seo-cta-section {
  background: #ffffff;
  padding: 80px 24px;
}

.seo-stories-container,
.seo-faq-container,
.seo-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Shared centered intro */
.seo-stories-intro-wrap,
.seo-faq-intro-wrap {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.seo-stories-pill,
.seo-faq-pill {
  font-weight: 300;
  font-size: 16px;
  line-height: 101%;
  background: #ececec;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 20px;
  margin: 0 0 10px;
}

.seo-stories-title,
.seo-faq-title {
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 123%;
  color: #161616;
}

.seo-stories-subtext,
.seo-faq-subtext {
  max-width: 800px;
  margin: 24px auto 40px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #161616;
}

/* Success stories */
.seo-stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.seo-stories-card {
  background: #fbcd1c;
  border-radius: 24px;
  padding: 32px;
}

.seo-stories-quote-icon {
  font-weight: 600;
  font-size: 96px;
  line-height: 101%;
  letter-spacing: 0%;
  color:#EABD10;
}

.seo-stories-quote {
  margin: 0;
  color: #161616;
  font-size: 16px;
  transform: translateY(-40px);
  line-height: 24px;
  font-weight: 400;
}

.seo-stories-person-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #937501;
  margin-bottom: 32px;
}

.seo-stories-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #161616;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
}

.seo-stories-person-name {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.seo-stories-person-role {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.seo-stories-person-loc {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}

.seo-stories-metrics-row {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.seo-stories-metric {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.seo-stories-metric-value {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.seo-stories-metric-label {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
}

/* FAQ */
.seo-faq-accordion {
  max-width: 600px;
  margin: 0 auto;
}

.seo-faq-item {
  border-radius: 8px;
}

.seo-faq-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  cursor: pointer;
}

.seo-faq-bar-wrap {
  width: 24px;
}

.seo-faq-bar {
  background: #fbcd1c;
  width: 6px;
  height: 18px;
  border-radius: 8px;
}

.seo-faq-question {
  margin: 0 8px 0 0;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #161616;
}

.seo-faq-icon {
  margin-left: auto;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-faq-content {
  padding-left: 24px;
  display: grid;
  transition: grid-template-rows 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-faq-content-inner {
  overflow: hidden;
  min-height: 0;
}

.seo-faq-answer {
  margin: 0;
  padding-bottom: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #8e8e8e;
  font-weight: 300;
}

.seo-faq-item[data-open="true"] .seo-faq-content {
  grid-template-rows: 1fr;
}

.seo-faq-item[data-open="false"] .seo-faq-content {
  grid-template-rows: 0fr;
}

.seo-faq-item[data-open="true"] .seo-faq-icon {
  transform: rotate(180deg);
}

/* CTA */
.seo-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.seo-cta-content {
  padding-top: 0;
  padding-bottom: 0;
}

.seo-cta-pill {
  font-weight: 300;
  font-size: 16px;
  line-height: 90%;
  background: #fbcd1c;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  margin: 0 0 10px;
}

.seo-cta-title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 123%;
  color: #161616;
}

.seo-cta-subtext {
  margin: 24px 0 16px;
  font-size: 18px;
  line-height: 28px;
  color: #161616;
  font-weight: 300;
}

.seo-cta-btn {
  padding: 24px 40px;
  border: 0;
  border-radius: 16px;
  background: #f4f4f4;
  color: #a6a6a6;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

/* Contact Form 7 - match existing design */
.seo-cta-form-col .wpcf7 {
  width: 100%;
}
.seo-cta-form-col .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.seo-cta-form-col .wpcf7 p {
  margin: 0;
}
.seo-cta-form-col .wpcf7-form-control-wrap {
  display: block;
}
.seo-cta-form-col .wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 4px;
}

.seo-cta-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.seo-cta-form-col .hidden-fields-container{
  border:none !important;
}

.seo-cta-form-col input {
  width: 100%;
  padding: 16px 24px;
  border: 0;
  border-radius: 16px;
  outline: none;
  background: #f4f4f4;
  font-size: 18px;
  color: #161616;
}

.seo-cta-form-col input::placeholder {
  color: #a6a6a6;
  font-weight: 300;
}

.seo-cta-form-col button {
  margin-top: 48px;
}

/* Breakpoints */
@media (min-width: 768px) {

  .seo-stories-title,
  .seo-faq-title {
    font-size: 40px;
  }

  .seo-faq-question {
    font-size: 16px;
    line-height: 24px;
  }

  .seo-faq-subtext {
    font-size: 18px;
    line-height: 28px;
  }

  .seo-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-cta-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .seo-cta-title {
    font-size: 40px;
  }

  .seo-cta-form {
    max-width: 500px;
    margin-left: auto;
  }
}

@media (min-width: 1024px) {

  .seo-stories-title,
  .seo-faq-title {
    font-size: 60px;
  }

  .seo-stories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-cta-title {
    font-size: 50px;
  }
}


.trusted-partners{
  padding: 80px 24px;
  background: #ffffff;
  text-align: center;
}

.trusted-partners-container{
  max-width: 1200px;
  margin: 0 auto;
}

.trusted-partners-title{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
}

.trusted-partners-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.trusted-partner-card{
  border:1px solid #0001;  
  border-radius: 20px;
}

.trusted-partner-logo{
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.trusted-partner-logo img{
  width:60%;
  height: 100%;
  object-fit: contain;
}

.trusted-partner-name{
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .trusted-partners-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .trusted-partners-grid{
    grid-template-columns: 1fr;
  }
}