@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
}

/* ── Header ── */
.site-header {
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e5e7eb;
}

.header-container {
  width: 1152px;
  max-width: 1152px;
  height: 72px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 21px;
  width: 160px;
  display: block;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 202px;
  height: 40px;
  background-color: #8EE4A0;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 1;
}

.header-cta:hover {
  background-color: #7dd494;
}

/* ── Responsive header ── */
@media (max-width: 1152px) {
  .header-container {
    width: 100%;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 16px 16px;
  }

  .header-logo img {
    width: 117px;
    height: 16px;
    object-fit: contain;
  }

  .header-cta {
    width: 177px;
    height: 36px;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
  }

}

/* ── Hero Banner ── */
.hero {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0px 80px 0px;
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  place-items: center;
  background-color: #F9FAFB;
}

.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #fff;
  outline: 1px solid #8EE4A0;
  outline-offset: 3px;
  border-radius: 999px;
  padding: 4px 10px 4px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4E5AF4;
  background-color: #8EE4A04D;
  height: 32px;
  margin-bottom: 40px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.hero-title-accent {
  color: #3b6cf8;
}

br.br-mobile { display: none; }
br.br-desktop { display: block; }

.hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #374151;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8EE4A0;
  color: #1A1D2B;
  font-family: 'Montserrat'!important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  white-space: nowrap;
  margin-bottom: 16px;
  width: 350px;
  height: 56px;
}


.hero-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
  margin-top: 4px;
}

/* ── Metrics Section ── */
.metrics {
  width: 100%;
  min-height: 284px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-bottom: 2px solid transparent;
  border-image-source: linear-gradient(90deg, rgba(250, 250, 252, 0.2) 0%, rgba(78, 90, 244, 0.2) 50%, rgba(255, 255, 255, 0.2) 100%);
  border-image-slice: 1;
}

.metrics-inner {
  width: 1152px;
  max-width: 1152px;
  min-height: 284px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.metrics-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.metrics-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.metrics-title-wrapper {
  height: 120px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 273px;
}

.metrics-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #3b6cf8;
}

.metrics-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;  
  color: #374151;
}

/* ── Responsive metrics ── */
@media (max-width: 1152px) {
  .metrics-inner {
    width: 100%;
  }
  .metrics-title{
    font-size: 24px;
  }
  .hero-cta {
    width: 343px;
  }
}

@media (max-width: 1024px) {
  .metrics-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .metrics-title-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .metrics {
    padding: 0 16px;
    min-height: unset;
  }

  .metrics-inner {
    min-height: unset;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .metrics-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .metrics-item {
    padding: 0px 0px 32px 0px;
  }

  .metrics-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .metrics-title-wrapper {
    height: unset;
    width: 343px;
  }
}

/* ── Challenges Section ── */
.challenges {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  background-color: #fff;
}

.challenges-inner {
  width: 1152px;
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.challenges-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.challenges-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3b6cf8;
  text-transform: uppercase;
}

.challenges-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-top: 24px;
  margin-bottom: 16px;
}

.challenges-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #374151;
}

.challenges-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 431px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.challenges-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  border: 1px solid #e5e7eb;
}

.challenges-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #8EE4A0;
  margin-bottom:15px ;

}

.challenges-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.challenges-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #374151;
  width: 400px;
  overflow: hidden;
}

/* ── Responsive challenges ── */
@media (max-width: 1152px) {
  .challenges-inner {
    width: 100%;
  }
  .challenges-header {
    /* margin-bottom: 12px; */
    /* margin-top: 32px; */
  }
  .challenges-card-desc{
    width: 295px;
  }
}

@media (max-width: 768px) {
  .challenges {
    padding: 0 16px;
  }

  .challenges-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 32px;
  }

  .challenges-title {
    font-size: 24px;
      margin-top: 16px;
      margin-bottom: 12px;
      width: 343px;
  }

  .challenges-title br {
    display: none;
  }

  .challenges-desc br {
    display: none;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    height: unset;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .challenges-card {
    border-radius: 12px;
    padding: 40px 20px;
  }

  .challenges-card-desc {
    width: 295px;
    overflow: hidden;
  }
}

/* ── Framework Section ── */
.framework {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  background-color: #F9FAFB;
}

.framework-inner {
  width: 1152px;
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: flex-start;
}

.framework-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.framework-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3b6cf8;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.framework-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.framework-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #374151;
  margin-bottom: 48px;
}

.framework-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.framework-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  height: 101px;
}

.framework-list-item:first-child {
  border-top: none;
}

.framework-list-item:last-child {
  border-bottom: none;
}

.framework-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  background: #f0fdf4;
}

.framework-list-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  display: block;
  margin-bottom: 3px;
}

.framework-list-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #6b7280;
}

.framework-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8EE4A0;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
  margin-bottom: 10px;
  width: 350px;
  height: 56px;
}

.framework-cta:hover {
  background-color: #22c55e;
}

.framework-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #9ca3af;
  letter-spacing: 0.02em;
  text-align: center;
  align-self: center;
}

/* Assessment Card */
.framework-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.framework-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 6px 6px 32px rgba(0,0,0,0.12), 2px 2px 8px rgba(0,0,0,0.06);
  font-family: 'Montserrat', sans-serif;
  /* width: 520px; */
}

.fcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid #e5e7eb;
  background-color:#E8EAEE;
}

.fcard-header-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fcard-header-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #8EE4A0;
  flex-shrink: 0;
  display: inline-block;
}

.fcard-badge {
  font-size: 14px;
  font-weight: 600;
  background-color: #8EE4A0;
  color: #000;
  padding: 4px 14px;
  border-radius: 999px;
}

.fcard-body {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fcard-profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
}

.fcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fcard-profile-name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.fcard-profile-sub {
  font-size: 10px;
  font-weight: 400;
  color: #94a3b8;
  margin-top: 1px;
}

/* Globe chart */
.fcard-globe-wrap {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fcard-globe {
  width: 100%;
  max-width: 392px;
  height: auto;
  display: block;
}

.fcard-tile-box {
  background: #eef2ff;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fcard-profile-tile {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

.fcard-tile-label {
  font-weight: 400;
}

.fcard-tile-value {
  font-weight: 600;
  color: #0f172a;
}

.fcard-zone {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

.fcard-zone-label {
  font-weight: 400;
}

.fcard-zone-value {
  font-weight: 600;
  color: #0f172a;
}

.fcard-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2px 0;
}

.fcard-blockers-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: -4px;
  margin-top: 25px;
}

.fcard-blockers {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.fcard-blocker-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px;
  border-radius: 4px;
  text-align: center;
}

.fcard-blocker-box-name {
  font-size: 14px;
  font-weight: 700;
}

.fcard-blocker-box-pct {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.fcard-insight {
  background-color: #f8faff;
  border: 1px solid #e0e7ff;
  border-left: 3px solid #3b6cf8;
  border-radius: 0 6px 6px 0;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 136px;
  overflow: hidden;
}

.fcard-insight-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #3b6cf8;
  text-transform: uppercase;
}

.fcard-insight-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #374151;
}

.fcard-disclaimer {
  font-size: 12px;
  font-weight: 400;
  color: #1A1D2B;
  text-align: center;
  /* padding-top: 18px; */
  grid-column: 2;
}

/* ── Responsive framework ── */
@media (max-width: 1152px) {
  .framework-inner {
    width: 100%;
    gap:16px;
  }
  .fcard-header {
    padding: 16px 18px;
  }
  .fcard-body {
  padding: 24px 16px;
  }
  .fcard-blocker-box {
    height: 57px;
  }
}

@media (max-width: 900px) {
  .framework-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .framework-content {
    display: contents;
  }

  .framework-label {
    order: 1;
  }

  .framework-title {
    order: 2;
  }

  .framework-desc {
    order: 3;
  }

  .framework-list {
    order: 4;
  }

  .framework-card-wrapper {
    order: 5;
  }

  .fcard-disclaimer {
    order: 6;
    grid-column: 1;
  }

  .framework-cta {
    order: 7;
    align-self: center;
    width: 343px;
  }

  .framework-note {
    order: 8;
  }

  .framework-inner > *,
  .framework-content > * {
    text-align: center;
  }

  .framework-list-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .framework {
    padding: 0 16px;
  }

  .framework-inner {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 16px;
  }

  .framework-title {
    font-size: 24px;
  }
}

/* ── Insight / Comparison Section ── */
.insight {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  border-bottom: 2px solid transparent;
  border-image-source: linear-gradient(90deg, rgba(250, 250, 252, 0.2) 0%, rgba(78, 90, 244, 0.2) 50%, rgba(255, 255, 255, 0.2) 100%);
  border-image-slice: 1;
}

.insight-inner {
  width: 1152px;
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.insight-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* max-width: 680px; */
  /* margin-bottom: 24px; */
}

.insight-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3b6cf8;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.insight-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}

.insight-desc-wrapper {
  width: 100%;
  max-width: 664px;
  opacity: 1;
}

.insight-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #374151;
}

.insight-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  height: 345px;
}

.insight-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.insight-card--traditional {
  background-color: #fff;
  border: 1px solid #e5e7eb;
}

.insight-card--r180 {
  background-color: #8EE4A0;
  border: 1px solid #bbf7d0;
  box-shadow: 0 25px 25px rgba(142, 228, 160, 0.5);
  backdrop-filter: blur(25px);
}

.insight-card-header {
  padding: 40px 40px 0px 40px;
  /* border-bottom: 1px solid #e5e7eb; */
}

.insight-card--r180 .insight-card-header {
  border-bottom-color: #bbf7d0;
}

.insight-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.insight-card-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1A1D2B;
}

.insight-list {
  list-style: none;
  padding: 24px 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #374151;
}

.insight-icon {
  flex-shrink: 0;
  width: 18px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.insight-icon--no {
  /* background-color: #fee2e2; */
}

.insight-icon--yes {
  /* background-color: #dcfce7; */
}

/* ── Responsive insight ── */
@media (max-width: 1152px) {
  .insight-inner {
    width: 100%;
  }
  .insight-desc {
    font-size: 14px;
  }
  .insight-card-header{
    padding: 24px 24px 0px 24px;
  }
  .insight-list {

  padding: 24px 24px 24px;

}
}

@media (max-width: 768px) {
  .insight {
    padding: 0 16px;
  }

  .insight-inner {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 32px;
  }

  .insight-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .insight-title br {
    display: none;
  }

  .insight-grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .insight-card {
    width: 100%;
    max-width: 343px;
    height: auto;
    margin: 0 auto;
  }
}

/* ── Applied Results Section ── */
.results {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  background-color: #fff;
}

.results-inner {
  width: 1152px;
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.results-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3b6cf8;
  text-transform: uppercase;
}

.results-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.results-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.results-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #3b6cf8;
}

.results-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #374151;
}

/* ── Responsive results ── */
@media (max-width: 1152px) {
  .results-inner {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .results {
    padding: 0 16px;
  }

  .results-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .results-title {
    font-size: 24px;
  }
}

/* ── Client Testimonials Section ── */
.testimonials {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  background-color: #F9FAFB;
}

.testimonials-inner {
  width: 1152px;
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 48px; */
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3b6cf8;
  text-transform: uppercase;
  margin-bottom: 24px;

}

.testimonials-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 48px;
}

.testimonials-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 32px;
  border: 1px solid #e5e7eb;
  border-bottom: 3px solid #8EE4A0;
  border-radius: 12px;
  background-color: #fff;
}

.tcard-stars {
  display: flex;
  margin-bottom: 16px;
  gap: 1px;
}

.tcard-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: #374151;
  flex: 1;
}

.tcard-more {
  color: #3b6cf8;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.tcard-more:hover {
  text-decoration: underline;
}

/* Testimonial Modal */
.tmodal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.tmodal-overlay.active {
  display: flex;
}

.tmodal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  padding-bottom: 0;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: tmodalFadeIn 0.3s ease;
  overflow: visible;
}

@keyframes tmodalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tmodal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  z-index: 1;
}

.tmodal-close:hover {
  opacity: 0.8;
}

.tmodal-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 20px;
  transform: translateY(120%);
  position: relative;
  z-index: 1;
}

.tmodal-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.tmodal-arrow:hover {
  transform: scale(1.1);
}

.tmodal-arrow svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tmodal-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.tmodal-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #374151;
  margin-bottom: 24px;
}

.tmodal-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 40px;
}

.tmodal-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.tmodal-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}

@media (max-width: 768px) {
  .tmodal-overlay {
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
  }

  .tmodal {
    border-radius: 20px 20px 0 0;
    padding: 32px 24px 0;
    max-width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: tmodalSlideUp 0.3s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  }

  @keyframes tmodalSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .tmodal-close {
    top: 12px;
    right: 12px;
  }

  .tmodal-author {
    padding-bottom: 24px;
  }

  .tmodal-nav {
    display: none;
  }

  .tmodal-text {
    font-size: 15px;
    line-height: 26px;
  }
}

.tcard-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.tcard-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.tcard-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
}

/* ── Responsive testimonials ── */
@media (max-width: 1152px) {
  .testimonials-inner {
    width: 100%;
  }
  .testimonials-label {
    margin-bottom: 16px;
  }
  .testimonials-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 0 16px;
  }

  .testimonials-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    /* gap: 32px; */
  }

  .testimonials-title {
    font-size: 24px;
  }
}

/* ── Founder Section ── */
.founder {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.founder-inner {
  width: 1152px;
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Card wrapper */
.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  border-radius: 16px;
  background-color: #fff;
  /* overflow: hidden; */
  align-items: stretch;
}

/* Left column */
.founder-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0px 24px 0px 0px;
  align-items: stretch;
  position: sticky;
    top: 75px;
    height: fit-content;
}

.founder-photo-wrap {
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
}

.founder-photo {
  width: 100%;
  height: 463px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.founder-nameplate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 12px;
  background: #fff;
  height: 56px;
  box-shadow: 0px 2px 28px 0px #4E5AF41A;
}

.founder-nameplate-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #3b6cf8;
  letter-spacing: 0.04em;
}

.founder-nameplate-sep {
  font-size: 12px;
  color: #9ca3af;
}

.founder-nameplate-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #374151;
  letter-spacing: 0.02em;
}

/* Vertical divider */
.founder-divider {
  display: none;
}

/* Right: content */
.founder-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 48px;
  height: 653px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.founder-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #3b6cf8;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.founder-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}

.founder-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #374151;
  margin-bottom: 16px;
}

.founder-link {
  color: #3b6cf8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-underline-offset: 4px;
}
.founder-link-tech {
  color: #3b6cf8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.founder-link:hover {
  text-decoration: underline;
}

.founder-link--italic {
  font-style: italic;
  font-weight: 600;
}

.founder-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 16px;
}

.founder-mention {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: #374151;
  margin-bottom: 24px;
}

.founder-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8EE4A0;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 16px;
  white-space: nowrap;
  width: 350px;
  height: 56px;
}

.founder-cta:hover {
  background-color: #22c55e;
}

.founder-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  padding-left: 34px;
}

.founder-mobile-header {
  display: none;
}

/* ── Responsive founder ── */
@media (max-width: 1152px) {
  .founder-inner {
    width: 100%;
  }
  .founder-desc{
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 900px) {
  .founder-card {
    display: flex;
    flex-direction: column;
  }

  .founder-mobile-header {
    display: block;
    order: -2;
    padding: 0px 0px 16px;
    text-align: center;
  }

  .founder-content {
    padding: 0;
    height: auto;
    border: none;
    border-radius: 0;
  }

  .founder-text-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
  }

  .founder-content .founder-label,
  .founder-content .founder-title {
    display: none;
  }

  .founder-divider {
    width: 100%;
    height: 1px;
  }

  .founder-left {
    padding: 0;
    align-items: center;
    position: static;
    height: auto;
        margin-bottom: 24px;

  }

  .founder-photo-wrap {
    width: 100%;
    max-width: 343px;
    height: 462px;
    border-radius: 10px;
    margin: 0 auto;
  }

  .founder-nameplate {
    position: relative;
    z-index: 2;
    margin-top: -22px;
    margin-left: 16px;
    margin-right: 16px;
    bottom: 44px;
    width: 327px;
  }

  .founder-cta {
    align-self: stretch;
    text-align: center;
    margin-top: 24px;
  }

  .founder-note {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .founder {
    padding: 0 16px;
  }

  .founder-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .founder-title {
    font-size: 24px;
        margin-top: 16px;

  }

  .founder-content {
    padding: 0;
  }

  .founder-text-wrap {
    padding: 24px 24px;
  }
}

/* ── Process / How It Works Section ── */
.process {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  background-color: #f9fafb;
}

.process-inner {
  width: 1152px;
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.process-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3b6cf8;
  text-transform: uppercase;
}

.process-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.process-title-accent {
  color: #3b6cf8;
}

.process-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #fff;
}

.process-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #8EE4A0;
  margin-bottom: 15px;
  line-height: 1;
}

.process-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 8px;
}

.process-step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #6b7280;
}

/* ── Booking Widget ── */
.booking-widget {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  /* background-color: #fff; */
}

@media (max-width: 768px) {
  .booking-widget .calendly-inline-widget {
    height: 1100px !important;
  }
  .process-step {
    justify-content: center;
    align-items: center;
    
  }
  .process-step-desc {
    text-align: center;
  }
  .process-step-num{
    margin-bottom: 15px;
  }
}

/* ── Responsive process ── */
@media (max-width: 1152px) {
  .process-inner {
    width: 100%;
  }
  .booking-title {
    text-align: center;
  }
  .booking-cal-title {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-widget {
    grid-template-columns: 1fr;
    position: relative;
  }

  .booking-left {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .booking-logo {
    margin: 0 auto;
  }

  .booking-sep {
    width: 100%;
  }

  .booking-calendly-badge {
    right: -50px;
    left: auto;
    transform: rotate(45deg);
    width: 150px;
    padding: 5px 0 4px;
  }

  .booking-calendly-powered {
    font-size: 6px;
  }

  .booking-calendly-name {
    font-size: 10px;
  }

  .booking-right {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 0 16px;
  }

  .process-inner {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 32px;
  }

  .process-title {
    font-size: 26px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .booking-right {
    padding: 24px 20px;
  }
}

/* ── CTA Band Section ── */
.cta-band {
  width: 100%;
  background-color: #fff;
  padding: 80px 40px;
}

.cta-band-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.cta-band-card {
  background-color: #4f52e6;
  border-radius: 20px;
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.cta-band-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.cta-band-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.cta-band-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  margin: 0;

}

.cta-band-btn {
  display: inline-block;
  background-color: #fff;
  color: #4E5AF4;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.cta-band-btn:hover {
  opacity: 0.9;
}

.cta-band-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .cta-band {
    padding: 40px 16px 8px 16px;
  }
  .cta-band-card {
    padding: 48px 0px;
  }
  .cta-band-title {
    font-size: 32px;
    width: 331px;
    text-align: center;
  }
  .cta-band-desc{
    padding: 0 16px;
  }
}

/* ── Responsive hero ── */
@media (max-width: 768px) {
  .hero {
      padding: 48px 0px 48px 0px;

    min-height: unset;
  }

  .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 34px;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 16px;
  }

  br.br-mobile { display: block; }
  br.br-desktop { display: none; }

  .hero-desc {
    font-size: 15px;
    line-height: 22px;
    padding: 0 16px;
      margin-bottom: 24px;

  }

  .hero-desc br {
    display: none;
  }

  .hero-badge {
    padding: 4px 10px 4px 10px;
    margin-bottom: 27px;
  }

  .hero-badge img {
    width: 14px;
    height: 14px;
  }
}

/* ── Site Footer ── */
.site-footer {
  width: 100%;
  background-color: #fff;
  /* border-top: 1px solid #1a1a2e; */
}

.site-footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F9FAFB;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer-logo-img {
  height: 21px;
  width: auto;
  display: block;
}

.site-footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 16px 16px;
    border-radius: 8px;
  }
  .site-footer-copy {
    font-size: 10px;
  }
  .site-footer-logo-img{
    height: 16px;
  }
}
