/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@400;600;700;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #0599FF;
  --primary-text: #fff;
  --body-text: #1a1a1a;
  --font-family: 'Poppins', Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  background: #FDFDFD;
}

header {
  background: #FDFDFD;
}

.announcement-stripe {
  background: #0599FF;
  text-align: center;
  padding: 10px 24px;
}

.announcement-stripe a {
  color: #fff;
  text-decoration: underline;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}

.announcement-stripe a:hover {
  opacity: 0.9;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo-wrap {
  flex-shrink: 0;
}

.logo {
  height: 64px;
  width: auto;
}

.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #152741;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.header-nav-link:hover {
  color: var(--primary);
  background: rgba(5, 153, 255, 0.06);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--primary-text);
  border: 2px solid var(--primary);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 24px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}



.hero-split {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 24px 80px;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-content {
  flex: 0 0 60%;
}

.hero-calendly {
  flex: 0 0 40%;
  min-width: 0;
  align-self: stretch;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  background: #fff;
}

.hero-calendly .calendly-inline-widget {
  width: 100% !important;
  min-width: auto !important;
  height: 100% !important;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-calendly .calendly-inline-widget> :not(iframe) {
  display: none !important;
}

.calendly-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f8fafc;
  border-radius: 12px;
}

.calendly-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.calendly-loading-text {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

.calendly-placeholder {
  background: #f0f4f8;
  border-radius: 12px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 18px;
  font-weight: 600;
}

.hero-heading {
  font-family: var(--font-family), sans-serif;
  font-size: 45px;
  color: #152741;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2em;
}

.hero-heading em {
  font-style: normal;
  background: linear-gradient(91deg, #3B82F6, #034975);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: #4a4a4a;
  margin-bottom: 28px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4em;
  padding-right: 20px
}

.hero-sub-special {
  background: linear-gradient(91deg, #3B82F6, #034975);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-rating-icon {
  flex-shrink: 0;
}

.hero-rating-score {
  font-size: 16px;
  font-weight: 700;
  color: #152741;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #2d2d2d;
}

.hero-check-item svg {
  height: 25px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 39, 65, 0.3);
}

.why-section {
  padding: 0px 24px 20px;
  position: relative;
  overflow: hidden;
}

.why-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  margin-bottom: 30px;
}

.why-heading {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4em;
  color: #2d2d2d;
  letter-spacing: -0.5px;
}

.why-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.why-card--left {
  transform: translateY(-10px);
}

.why-card--center {
  background: #fff;
  z-index: 2;
}

.why-card--right {
  transform: translateY(-10px);
}

.why-card-icon {
  margin-bottom: 15px;
}

.why-card-icon i {
  font-size: 45px;
  color: var(--primary);
}

.why-card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2em;
}

.why-card--left .why-card-title,
.why-card--right .why-card-title {
  color: #1a1a1a;
}

.why-card--center .why-card-title {
  color: #fff;
}

.why-card-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4em;
}

.why-card--left .why-card-text,
.why-card--right .why-card-text {
  color: #6b7280;
}

.why-card--center .why-card-text {
  color: rgba(255, 255, 255, 0.85);
}

.why-dashes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.why-cta-row {
  padding: 0 24px;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-cta-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  background: #f8fafc;
  border-radius: 16px;
  padding: 36px 48px;
  gap: 32px;
}

.why-cta-content {
  min-width: 0;
}

.why-cta-heading {
  font-size: 25px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
  font-family: var(--font-family)
}

.why-cta-desc {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.5;
  font-family: var(--font-family)
}

.why-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--primary-text);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 45px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(5, 153, 255, 0.25), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 153, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.review-section {
  padding: 40px 24px 40px;
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: auto;
}

.review-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.review-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4em;
  color: #2d2d2d;
  letter-spacing: -0.5px;
}

.pain-section {
  padding: 50px 24px 50px;
  max-width: 1300px;
  margin: auto;
}

.pain-section-2 {
  padding-top: 0px
}

.pain-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.review-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card {
  height: 350px;
  width: 400px;
  border: 2px solid rgba(128, 128, 128, 0.274);
  border-radius: 8px;
  overflow: hidden;
}

.review-card-image {
  height: 70%;
}


.review-card-image img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: 100%;
}

.review-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 30%;
  padding-inline: 15px;
}

.review-card-content .score {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 19px;
}

.review-card-content .history {
  width: 70%;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family);
}

.pain-content {
  flex: 0 0 55%;
}

.pain-visual {
  flex: 0 0 35%;
  padding-right: 20px;
}

.pain-img {
  width: 100%;
  object-fit: contain;
  height: 506px;
  transform: scale(1.2);
}

.fade-img {
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%), linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}

.pain-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 20px;
}

.pain-heading {
  font-family: var(--font-family), sans-serif;
  font-size: 45px;
  color: #152741;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2em;
}

.pain-heading em {
  font-style: normal;
  color: var(--primary);
}

.pain-copy {
  color: #4a4a4a;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4em;
}

.pain-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-bottom: 20px;
}

.pain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 500;
  color: #4b5563;
}

.pain-pill-2 {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.pain-pill-2-content h4 {
  font-size: 21px;
  font-weight: 500;
}

.pain-pill-2-content {
  border-bottom: 2px solid #0599ff4a;
  padding-bottom: 5px;
}

.pain-pill-2-content p {
  font-size: 17px;
  font-weight: 300;
}

.pain-pill-2-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.03);

}

.pain-pill-2-icon i {
  font-size: 27px;
  color: white;
}

.pain-pill-2-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  box-shadow: 0 4px 20px 0 rgba(201, 197, 197, 0.03);
}

.pin-point-circle {
  width: 26px;
  height: 26px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: var(--primary);
}

.pin-point-circle i {
  font-size: 17px;
  color: white;
}

.pain-grid .pain-pill:not(:last-child) .pin-point-circle::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: var(--primary);
  bottom: -12px;
}

.pain-x {
  flex-shrink: 0;
}

.pain-emphasis {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid var(--primary);
  background: #fafcff;
  border-radius: 0 12px 12px 0;
  padding-top: 20px;
  padding-inline: 24px;
  padding-bottom: 15px;
}

.pain-emphasis svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-emphasis p {
  font-size: 20px;
  line-height: 1.6;
  color: #374151;
  font-family: var(--font-family);
}

.pain-emphasis strong {
  color: var(--primary);
  font-weight: 700;
}

.pain-action {
  padding-top: 14px;
  /* border-top: 1px solid #e5e7eb; */
}

.pain-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--primary-text);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(5, 153, 255, 0.25), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pain-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 153, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.audience-section {
  padding: 40px 24px 100px;
}

.audience-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.audience-tag {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 20px;
}

.audience-heading {
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #2d2d2d;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 52px;
}

.audience-heading em {
  font-style: normal;
  color: var(--primary);
}

.audience-split {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.audience-card-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
}

.audience-big-icon {
  display: flex;
  margin-bottom: 12px;
}

.audience-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.audience-col-header {
  padding: 18px 0;
  text-align: center;
}

.audience-for-header {
  background: linear-gradient(180deg, #34d399, #059669);
}

.audience-not-header {
  background: linear-gradient(180deg, #f87171, #dc2626);
}

.audience-col-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 28px;
  background: #fff;
  flex: 1;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
  padding: 12px 0;
}

.audience-list li+li {
  border-top: 1px solid #f3f4f6;
}

.audience-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.mechanism-section {
  padding: 0px 24px;
}

.mechanism-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.mechanism-copy {
  color: #4a4a4a;
  margin-bottom: 28px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 36px;
}

.mechanism-copy-bottom {
  color: #4a4a4a;
  margin-bottom: 28px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4em;
  margin-top: 25px;
  margin-bottom: 36px;
}

.mechanism-visual {
  flex: 0 0 35%;
  position: sticky;
  top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mechanism-img {
  max-height: 95vh;
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

.mechanism-content {
  flex: 0 0 55%;
}

.mechanism-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 16px;
}

.mechanism-heading {
  font-family: var(--font-family), sans-serif;
  font-size: 45px;
  color: #152741;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2em;
}

.mechanism-steps {
  display: flex;
  /* flex-direction: column; */
  gap: 0;
  position: relative;
}


.mechanism-step {
  display: flex;
  gap: 24px;
  position: relative;
}

.mechanism-step-marker {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mechanism-step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.mechanism-step-body {
  flex: 1;
  padding-bottom: 36px;
  padding-top: 6px;
}

.mechanism-step:last-child .mechanism-step-body {
  padding-bottom: 0;
}

.mechanism-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 4px;
}

.mechanism-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.mechanism-action {
  margin-top: 32px;
}

.mechanism-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(5, 153, 255, 0.25), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.mechanism-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 153, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.includes-section {
  padding: 60px 24px 100px;
}

.includes-inner {
  max-width: 900px;
  margin: 0 auto;
}

.includes-tag {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 16px;
}

.includes-heading {
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #2d2d2d;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.includes-sub {
  text-align: center;
  font-size: 17px;
  color: #6b7280;
  margin-bottom: 44px;
}

.includes-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.includes-card {
  flex: 1;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.includes-card-header {
  padding: 16px 0;
  text-align: center;
}

.includes-card-header--blue {
  background: linear-gradient(180deg, #60a5fa, #2563eb);
}

.includes-card-header--green {
  background: linear-gradient(180deg, #34d399, #059669);
}

.includes-card-header--purple {
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}

.includes-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.includes-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 24px;
  background: #fff;
  flex: 1;
}

.includes-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  padding: 12px 0;
}

.includes-card-list li+li {
  border-top: 1px solid #f3f4f6;
}

.includes-check {
  flex-shrink: 0;
  margin-top: 3px;
}

.includes-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
  border-radius: 12px;
}

.includes-footer p {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1.5;
}



.proof-section {
  padding: 80px 24px;
}

.proof-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.proof-tag {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 20px;
}

.proof-heading {
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #2d2d2d;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.proof-sub {
  text-align: center;
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.proof-screenshot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.proof-screenshot-placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
}

.proof-trustpilot {
  margin-bottom: 48px;
}

.proof-tp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.proof-tp-header>span {
  font-size: 15px;
  font-weight: 700;
  color: #2d2d2d;
}

.proof-stars {
  display: flex;
  gap: 2px;
}

.proof-tp-rating {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.proof-tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-tp-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proof-tp-card-stars {
  display: flex;
  gap: 2px;
}

.proof-tp-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
  flex: 1;
}

.proof-tp-card-author {
  font-size: 14px;
  font-weight: 700;
  color: #2d2d2d;
}

.proof-tp-card-date {
  font-size: 12px;
  color: #9ca3af;
}

.proof-action {
  text-align: center;
}

.proof-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(5, 153, 255, 0.25), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.proof-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 153, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.different-section {
  padding: 80px 24px;
}

.different-inner {
  max-width: 900px;
  margin: 0 auto;
}

.different-tag {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 20px;
}

.different-heading {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  color: #2d2d2d;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
}

.different-heading em {
  font-style: normal;
  color: var(--primary);
}

.different-compare {
  text-align: center;
  margin-bottom: 40px;
}

.different-old {
  font-size: 17px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.different-new {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.different-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.different-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 2px 8px rgba(5, 153, 255, 0.08);
}

.different-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.different-goal {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.different-goal-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.different-goal-text {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.6;
}

.offer-section {
  padding: 40px 24px;
  background: linear-gradient(135deg, #0b3550 0%, #0a4b6e 50%, #0b3550 100%);
}

.offer-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.offer-badge {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.offer-heading {
  font-family: var(--font-family), sans-serif;
  font-size: 45px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2em;
}

.offer-sub {
  color: #fff;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4em;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  /* max-width: 560px; */
  margin: 0 auto 40px;
  text-align: left;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 26px;
  border-radius: 8px;
}

.offer-item i {
  font-size: 25px;
}

.offer-check {
  flex-shrink: 0;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 44px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.offer-urgency {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.582);
  margin-top: 16px;
  font-weight: 500;
}

.daily-structure-section {
  padding: 20px 24px 40px;
}

.daily-structure-inner {
  width: 75%;
  margin: 0 auto;
}

.daily-structure-header {
  text-align: center;
  margin-bottom: 30px;
}

.daily-structure-heading {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4em;
  color: #2d2d2d;
  letter-spacing: -0.5px;
}

.day-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(224, 242, 254, 0.6) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(5, 153, 255, 0.06);
  margin-bottom: 17px;
  width: 90%;
  margin-left: auto;
}

/* .day-card-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #38bdf8, var(--primary));
  background-size: 200% 100%;
} */

.day-card-content {
  display: flex;
  align-items: center;
  padding: 15px 35px;
  gap: 25px;
}

.day-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.day-label {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.day-number {
  font-size: 100px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  background: linear-gradient(180deg, #0599FF 0%, #0369b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.day-card-divider {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
  flex-shrink: 0;
}

.day-card-right {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.day-topic {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 2px 20px;
  border-radius: 12px;
}


.day-topic-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.day-topic-icon i {
  font-size: 28px;
  color: var(--primary);
}

.day-topic-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-topic-name {
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
}

.day-topic-hours {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 28px 24px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}



.footer-email {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--primary);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(5, 153, 255, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 153, 255, 0.3);
}

.footer-cta i {
  font-size: 14px;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #e5e7eb;
  padding: 14px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #9ca3af;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {
  max-width: 360px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.footer-email {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--primary);
}


.footer-logo {
  height: 64px;
  width: 64px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 17px;
  line-height: 1.6;
  color: #6b7280;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #9ca3af;
}

.faq-section {
  padding: 60px 24px;
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-heading {
  font-family: var(--font-family), sans-serif;
  font-size: 42px;
  color: #152741;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  font-weight: 800;
  line-height: 1.2em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.faq-details {
  display: block;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 600;
  color: #152741;
  line-height: 1.4;
  user-select: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-details[open]>.faq-question {
  background: #1e3a5f;
  color: #fff;
  border-color: #1e3a5f;
  border-radius: 14px 14px 0 0;
}

.faq-chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.3s, color 0.35s ease;
}

.faq-details[open]>.faq-question .faq-chevron {
  color: rgba(255, 255, 255, 0.7);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 24px 28px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 14px 14px;
}

.faq-answer p {
  font-size: 18px;
  line-height: 1.75;
  color: #4b5563;
}

.final-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0b3550 0%, #0a4b6e 50%, #0b3550 100%);
  text-align: center;
}

.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 44px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .logo {
    height: 76px;
  }

  .header-inner {
    padding: 12px 16px;
    gap: 12px;
    flex-direction: column
  }

  .header-cta {
    font-size: 17px;
    padding: 10px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta i {
    width: 26px !important;
    height: 26px !important;
    margin-top: 8px;
  }

  .announcement-stripe a {
    font-size: 14px;
  }

  .hero-split {
    flex-direction: column;
    padding: 20px 16px 50px;
    gap: 40px;
  }

  .hero-content {
    flex: none;
    width: 100%;
    padding-right: 0;
  }

  .hero-calendly {
    flex: none;
    width: 100%;
    align-self: auto;
    display: block;
    overflow: hidden;
  }

  .hero-calendly .calendly-inline-widget {
    height: 450px !important;
  }

  .hero-heading {
    font-size: 39px;
    font-weight: bolder;
    line-height: 1.2em;
  }

  .hero-heading br {
    display: none;
  }

  .hero-sub {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    max-width: none;
  }

  .hero-check-item {
    font-size: 17px;
  }

  .hero-btn {
    font-size: 17px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .why-section {
    padding: 20px 16px 60px;
  }

  .why-header {
    margin-bottom: 20px;
  }

  .why-heading {
    font-size: 28px;
  }

  .why-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .why-card {
    width: 100%;
    max-width: 340px;
    transform: none !important;
  }

  .why-dashes {
    display: none;
  }

  .why-cta-row {
    padding: 0 16px;
  }

  .why-cta-row-inner {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  .why-cta-btn {
    width: 100%;
    justify-content: center;
  }


  .review-section {
    padding: 60px 16px 50px;
  }

  .review-heading {
    font-size: 28px;
  }

  .review-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0px
  }

  .review-cards {
    flex-direction: column;
    gap: 20px
  }

  .review-card {
    width: 100%;
  }

  .pain-section {
    padding: 48px 16px 70px;
    padding-top: 33px !important;
    border-radius: 43px 43px 0 0;
    box-shadow: 0 -4px 0px rgb(0 0 0 / 5%);
  }

  .pain-inner {
    flex-direction: column;
    gap: 40px;
  }

  .pain-content {
    flex: none;
    width: 100%;
  }

  .pain-visual {
    display: none;
  }

  .pain-heading {
    font-size: 28px;
  }

  .pain-copy {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
  }

  .pain-emphasis {
    padding-inline: 10px;
  }

  .pain-emphasis p {
    font-size: 18px;
  }


  .pain-btn {
    font-size: 17px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .pain-pill-2 {
    gap: 18px;
  }

  .pain-pill-2-icon {
    width: 55px;
    height: 55px;
    padding: 19px;
  }

  .pain-pill-2-icon i {
    font-size: 26px;
  }


  .audience-section {
    padding: 20px 16px 60px;
  }

  .offer-heading {
    font-size: 28px
  }

  .offer-badge {
    font-size: 14px;
  }

  .audience-heading {
    margin-bottom: 36px;
  }

  .audience-split {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .audience-card-wrap {
    width: 100%;
    max-width: 360px;
  }

  .audience-col {
    width: 100%;
  }

  .audience-big-icon {
    width: 40px;
    height: 40px;
  }

  .audience-list li {
    font-size: 14px;
    padding: 12px 0;
  }

  .audience-list {
    padding: 20px 20px;
  }

  .mechanism-section {
    padding: 60px 16px;
  }

  .mechanism-inner {
    flex-direction: column;
    gap: 40px;
  }

  .mechanism-content {
    flex: none;
    width: 100%;
  }

  .mechanism-visual {
    flex: none;
    width: 100%;
    position: static;
  }

  .mechanism-heading {
    margin-bottom: 28px;
  }

  .mechanism-steps::before {
    left: 19px;
  }

  .mechanism-step {
    gap: 16px;
  }

  .mechanism-step-marker {
    width: 40px;
  }

  .mechanism-step-dot {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .mechanism-body {
    padding-bottom: 28px;
  }

  .mechanism-step-title {
    font-size: 16px;
  }

  .mechanism-step-text {
    font-size: 14px;
  }

  .mechanism-btn {
    width: 100%;
    justify-content: center;
  }

  .includes-section {
    padding: 60px 16px;
  }

  .includes-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .includes-card {
    width: 100%;
    max-width: 360px;
  }

  .includes-card-list {
    padding: 16px 18px;
  }

  .includes-card-list li {
    font-size: 13px;
    padding: 10px 0;
  }

  .includes-footer {
    flex-direction: column;
    text-align: center;
    padding: 20px 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer {
    padding: 24px 16px 0;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .offer-section {
    padding: 56px 16px;
  }

  .offer-sub {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-item {
    font-size: 16px;
    padding: 10px 14px;
  }

  .offer-btn {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 14px 24px;
  }

  .different-section {
    padding: 48px 16px;
  }

  .different-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .different-item {
    font-size: 14px;
    padding: 14px 16px;
  }

  .different-goal {
    padding: 22px 20px;
  }

  .different-goal-text {
    font-size: 15px;
  }

  .faq-section {
    padding: 48px 16px;
  }

  .faq-heading {
    font-size: 28px;
    margin-bottom: 28px;
    text-align: center;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    font-size: 17px;
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 20px;
  }

  .faq-answer p {
    font-size: 17px;
  }

  .proof-section {
    padding: 48px 16px;
  }

  .proof-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .proof-screenshot-placeholder {
    aspect-ratio: 4 / 3;
  }

  .proof-tp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proof-btn {
    width: 100%;
    justify-content: center;
  }

  .final-cta {
    padding: 60px 16px;
  }

  .final-cta-sub {
    font-size: 15px;
  }

  .final-cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 24px;
  }

  .daily-structure-inner {
    width: 95%;
  }

  .day-card {
    width: 100%;
  }

  .daily-structure-section {
    padding: 20px 9px 40px;
  }

  .day-card-content {
    flex-direction: column;
    padding: 28px 24px;
    gap: 0px
  }

  .day-card-left {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .day-label {
    font-size: 16px;
  }

  .day-number {
    font-size: 56px;
  }

  .day-card-divider {
    display: none;
  }

  .day-topic {
    padding: 4px 0px;
    background: transparent
  }

  .day-topic-icon {
    width: 36px;
    height: 36px;
  }

  .day-topic-text {
    flex-direction: row;
    align-items: center;
  }

  .day-topic-icon i {
    font-size: 16px;
  }

  .day-topic-name {
    font-size: 18px;
    flex: 3;
  }

  .day-topic-hours {
    font-size: 13px;
  }

  .daily-structure-heading {
    font-size: 28px;
  }
}