/* ==========================================================================
   Master Pixel-Match Section Styles (1 to 8) - High Polish & Premium Look
   ========================================================================== */

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

body {
  background-color: var(--light-bg);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.site-wrap {
  width: 100%;
  overflow-x: hidden;
}

.container-1200 {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* --------------------------------------------------------------------------
   Section 1: Nav & Hero (Warm Cream Background)
   -------------------------------------------------------------------------- */
.hero-section-bg {
  background-color: var(--light-bg);
  width: 100%;
  padding-bottom: 20px;
}

.site-nav {
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-svg {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-nav);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 11px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #1435cc;
  transform: translateY(-1px);
}

.hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 560px;
  position: relative;
  padding: 30px 40px 60px;
}

.hero-left {
  width: 560px;
  flex-shrink: 0;
  z-index: 2;
}

.hero-left h1 {
  font-family: var(--font-headline);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--navy);
  margin: 0 0 28px 0;
}

.hero-copy {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: #333955;
  margin-bottom: 32px;
}

.hero-copy p {
  margin: 0 0 12px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px;
}

.link-how-it-works {
  color: var(--primary-blue);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.link-how-it-works:hover {
  opacity: 0.8;
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: #4a5068;
}

.hero-footnote::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-blue);
}

.hero-right {
  width: 580px;
  position: relative;
  margin-right: -20px;
}

.hero-photo-wrapper {
  width: 100%;
  position: relative;
}

.hero-morph-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-audio-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.hero-waveform-svg {
  height: 26px;
  width: auto;
}

.hero-play-svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   Section 2: Blue Intro / KIT Panel
   -------------------------------------------------------------------------- */
.sec-blue-intro {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 90px 0 0 0;
  position: relative;
}

.sec-intro-header {
  margin-bottom: 20px;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-tag::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: currentColor;
}

.tag-white {
  color: rgba(255, 255, 255, 0.85);
}

.tag-blue {
  color: var(--primary-blue);
}

.sec-blue-intro h2 {
  font-family: var(--font-headline);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 36px 0;
  max-width: 600px;
}

/* Tilted KIT Card Assembly */
.kit-card-assembly {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -40px;
  overflow: hidden;
}

.side-card-peek {
  width: 140px;
  height: 400px;
  background-color: var(--card-cream);
  color: var(--navy);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0.85;
  border-radius: 4px;
}

.side-peek-title {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.side-peek-arrow {
  font-size: 18px;
}

.peek-left {
  margin-right: -40px;
  z-index: 1;
}

.peek-right {
  margin-left: -40px;
  z-index: 1;
}

.kit-main-polygon-card {
  position: relative;
  width: 993px;
  height: 488px;
  flex-shrink: 0;
  z-index: 2;
}

.kit-polygon-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kit-card-inner {
  position: absolute;
  inset: 0;
  padding: 42px 50px 30px 65px;
  display: flex;
  justify-content: space-between;
  color: var(--navy);
}

.kit-card-left-text {
  width: 440px;
}

.kit-tag {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.kit-title-row {
  display: flex;
  align-items: center;
  gap: 140px;
  margin-bottom: 12px;
}

.kit-title {
  font-family: var(--font-headline);
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -3.84px;
  line-height: 1;
  color: var(--navy);
}

.kit-accent-line {
  width: 28px;
  height: 3px;
  background-color: var(--primary-blue);
  margin-bottom: 14px;
}

.kit-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy);
  max-width: 300px;
  margin-bottom: 22px;
}

.kit-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.kit-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.kit-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background-color: #c3cef6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kit-stat-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--navy);
  text-align: center;
  white-space: nowrap;
}

.kit-stat-arrow {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 16px;
}

.kit-link-wrap {
  margin-top: 10px;
}

.kit-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-blue);
  padding-bottom: 2px;
}

.kit-photo-col {
  width: 420px;
  display: flex;
  justify-content: flex-end;
}

.kit-arch-wrapper {
  width: 390px;
  height: 420px;
  overflow: hidden;
  border-radius: 195px 195px 0 0;
  position: relative;
  margin-top: 10px;
}

.kit-arch-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.carousel-scroll-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 16px 0 24px 0;
  letter-spacing: 0.5px;
}

/* Process Tabs Bar */
.process-tabs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--card-cream);
  border-top: 1px solid var(--border-color);
}

.tab-btn {
  padding: 22px 28px;
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  border: none;
  border-right: 1px solid var(--border-color);
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

/* --------------------------------------------------------------------------
   Section 3: Listen Section
   -------------------------------------------------------------------------- */
.sec-listen {
  background-color: var(--light-bg);
  padding: 70px 0 50px 0;
}

.listen-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 10px;
}

.listen-01-wrap {
  font-family: var(--font-headline);
  font-size: 250px;
  font-weight: 300;
  line-height: 210px;
  letter-spacing: -12px;
  color: var(--primary-blue);
  user-select: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.listen-text-col {
  width: 235px;
  flex-shrink: 0;
  padding-left: 10px;
}

.listen-text-col h3 {
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0 0 16px 0;
}

.listen-text-col p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 23.2px;
  color: var(--navy);
  margin: 0 0 20px 0;
}

.listen-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.icon-blue-circle {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background-color: #c3cef6;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.feat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 0.52px;
}

.feat-desc {
  font-size: 13.5px;
  color: var(--navy);
}

.listen-dome-col {
  width: 250px;
  flex-shrink: 0;
}

.dome-img-wrapper {
  width: 250px;
  height: 326px;
  border-radius: 125px 125px 0 0;
  overflow: hidden;
  position: relative;
}

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

.listen-visuals-col {
  width: 314px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.visuals-wireframe-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wireframe-row-top, .wireframe-row-bottom {
  display: flex;
  gap: 12px;
}

.signal-map-badge {
  background-color: var(--soft-blue);
  padding: 14px 18px;
}

.signal-map-badge p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  margin: 0;
}

/* Banner */
.transition-banner {
  background-color: var(--soft-blue);
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy);
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.72px;
}

.banner-center-text {
  margin-left: 14px;
  font-size: 13px;
}

.banner-line {
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dashed #4a55a8;
  margin: 0 20px;
}

.banner-right {
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Section 4: The Signal Review
   -------------------------------------------------------------------------- */
.sec-signal-review {
  background-color: var(--darker-blue);
  color: var(--white);
  padding: 80px 0 40px 0;
}

.signal-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.signal-left-col {
  width: 520px;
}

.signal-left-col h2 {
  font-family: var(--font-headline);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 32px 0;
}

.signal-collage-container {
  position: relative;
  width: 520px;
  height: 420px;
}

.sec4-collage-img {
  display: block;
  width: 520px;
  height: 420px;
  object-fit: contain;
}

.signal-card {
  width: 480px;
  background-color: var(--card-cream);
  color: var(--navy);
  border-radius: 4px;
  padding: 32px;
}

.signal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--navy);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.signal-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-color);
}

.signal-num {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  min-width: 28px;
}

.signal-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.btn-sand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--sand);
  border: 1px solid rgba(0, 8, 31, 0.1);
  border-radius: 4px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-top: 22px;
  transition: background-color 0.2s;
}

.btn-sand:hover {
  background-color: #d8cebc;
}

.signal-card-note {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 10px;
}

.scroll-down-arrow {
  text-align: center;
  color: #cdd8ff;
  font-size: 24px;
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   Section 5: Partnership Proof / Is Taraah Right For You?
   -------------------------------------------------------------------------- */
.sec-proof {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.proof-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.proof-left-photo {
  width: 480px;
}

.proof-img {
  width: 100%;
  height: auto;
  clip-path: polygon(0% 0%, 78% 0%, 100% 28%, 100% 100%, 0% 100%);
  display: block;
}

.proof-right-col {
  width: 560px;
}

.proof-right-col h2 {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--navy);
  margin: 0 0 16px 0;
}

.accent-blue-line {
  width: 32px;
  height: 3px;
  background-color: var(--primary-blue);
  margin-bottom: 28px;
}

.accordion-container {
  border-top: 1px solid var(--border-color);
}

.accordion-row {
  border-bottom: 1px solid var(--border-color);
}

.accordion-header {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.accordion-num {
  font-weight: 700;
  margin-right: 14px;
  color: var(--navy);
}

.acc-toggle-icon {
  font-size: 18px;
  color: var(--text-gray);
}

.accordion-body {
  display: none;
  padding: 0 0 20px 36px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--white);
}

.accordion-row.active {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0 20px;
  margin: 0 -20px;
  border-bottom: none;
}

.accordion-row.active .accordion-header {
  color: var(--white);
}

.accordion-row.active .accordion-num {
  color: var(--white);
}

.accordion-row.active .acc-toggle-icon {
  color: var(--white);
}

.accordion-row.active .accordion-body {
  display: block;
}

/* --------------------------------------------------------------------------
   Section 6: Dark Partnership Cards
   -------------------------------------------------------------------------- */
.sec-dark-cards {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 90px 0;
}

.sec-dark-cards h2 {
  font-family: var(--font-headline);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 50px 0;
  color: #f1eee9;
}

.cards-3col-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.partner-card {
  position: relative;
  min-height: 330px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 2px;
}

.card-creator {
  background-color: #0f35e0;
}

.card-taraah {
  background-color: var(--card-cream);
  color: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.card-together {
  background-color: var(--together-blue);
  color: var(--navy);
}

.partner-card-photo-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 330px;
  clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 10% 100%);
  pointer-events: none;
}

.partner-card-photo-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 155px;
}

.partner-card h3 {
  font-family: var(--font-headline);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.81px;
  margin: 0 0 14px 0;
}

.partner-card p {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.partner-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s;
  align-self: flex-start;
}

.card-taraah .partner-circle-btn, .card-together .partner-circle-btn {
  border-color: rgba(0, 0, 0, 0.3);
}

.partner-circle-btn:hover {
  transform: scale(1.08);
}

.dark-bottom-banner {
  border: 1px solid var(--border-dark);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
}

.dark-banner-num {
  color: #f1eee9;
  font-weight: 700;
}

.dark-banner-tag {
  font-weight: 700;
}

.dark-banner-text {
  color: #b9bdcf;
}

/* --------------------------------------------------------------------------
   Section 7: Questions + Start
   -------------------------------------------------------------------------- */
.sec-faq-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.split-faq-left {
  background-color: var(--card-cream);
  padding: 90px 40px;
  display: flex;
  justify-content: flex-end;
}

.split-faq-inner {
  width: 100%;
  max-width: 480px;
}

.faq-subhead {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  margin: 30px 0 20px 0;
}

.faq-accordion .accordion-row {
  border-bottom: 1px solid var(--border-color);
}

.faq-accordion .accordion-row.active {
  background-color: #dde0f2;
  color: var(--navy);
  padding: 0 20px;
  margin: 0 -20px;
  border-bottom: none;
}

.faq-accordion .accordion-row.active .accordion-header {
  color: var(--navy);
}

.faq-accordion .accordion-row.active .accordion-body {
  color: #2a3050;
  padding: 0 0 20px 0;
}

.split-cta-right {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 90px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-cta-inner {
  width: 100%;
  max-width: 480px;
}

.split-cta-right h2 {
  font-family: var(--font-headline);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 36px 0;
}

.cta-btn-wrap {
  margin-bottom: 20px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--white);
  color: var(--primary-blue);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-white:hover {
  transform: translateY(-1px);
}

.cta-footnote {
  font-size: 13.5px;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Section 8: Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--footer-bg);
  padding: 80px 0 40px 0;
}

.footer-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #d5d0c8;
  padding-bottom: 20px;
}

.footer-logo-svg {
  display: block;
}

.footer-corner-svg {
  display: block;
}

.footer-headline {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  max-width: 800px;
  margin: 40px 0 60px 0;
}

.footer-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #d5d0c8;
  border-bottom: 1px solid #d5d0c8;
  font-size: 13.5px;
  color: var(--navy);
}

.footer-links {
  display: flex;
  gap: 36px;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-step-counter {
  font-weight: 500;
}

.footer-tagline {
  padding-top: 20px;
  font-size: 13.5px;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .container-1200 {
    width: 100%;
    padding: 0 20px;
  }

  .hero-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left, .hero-right {
    width: 100%;
    margin-right: 0;
  }

  .listen-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .signal-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .signal-left-col, .signal-card {
    width: 100%;
  }

  .proof-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .proof-left-photo, .proof-right-col {
    width: 100%;
  }

  .cards-3col-row {
    grid-template-columns: 1fr;
  }

  .sec-faq-cta-split {
    grid-template-columns: 1fr;
  }

  .split-faq-left, .split-cta-right {
    padding: 60px 20px;
    justify-content: flex-start;
  }
}
