/* =================================================== */
/* BUILD AUTHORITY SPECIFIC STYLING                    */
/* =================================================== */

/* ========================================= */
/* BUILD AUTHORITY - WHAT GROWREACH IS NOT  */
/* ========================================= */

.not-cards-container {
   width: 100%;
   max-width: 860px;
   display: flex;
   flex-direction: column;
   gap: 16px;
}

@media (min-width: 992px) {
   .not-cards-container {
      padding-top: 50px;
   }
}

.not-card {
   background: rgba(255, 255, 255, 0.02);
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 12px;
   padding: 20px 24px;
   display: flex;
   align-items: flex-start;
   gap: 16px;
   text-align: left;
   transition: background-color 0.3s ease, border-color 0.3s ease;
}

.not-card:hover {
   background: rgba(255, 255, 255, 0.04);
   border-color: rgba(239, 68, 68, 0.2);
}

.not-card-icon {
   width: 22px;
   height: 22px;
   flex-shrink: 0;
   margin-top: 2px;
}

.not-card-text {
   font-size: 15px;
   line-height: 1.6;
   color: #fafafa;
}

/* =================================================== */
/* BUILD AUTHORITY - GROWREACH COMMENTS DEMO SECTION */
/* =================================================== */
.comments-demo-section {
   padding: 60px 24px;
   background: var(--primary-bg);
}

@media (min-width: 992px) {
   .comments-demo-section .section-title {
      white-space: nowrap;
   }
}

.comments-demo-container {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 48px;
   width: 100%;
   max-width: 1000px;
   margin-top: 40px;
}

.comments-explanation-img {
   width: 620px;
   height: auto;
   display: block;

   @media (max-width: 768px) {
      width: 100%;
   }
}

.comments-examples-stack {
   display: flex;
   /* height: 1414px; */
   padding: 40px;
   flex-direction: column;
   align-items: center;
   gap: 40px;
   align-self: stretch;
   border-radius: 24px;
   background: var(--Card-1---Dark, #161A25);
}

.comment-example-img {
   width: 100%;
   height: auto;
   display: block;
}

.comments-row {
   display: flex;
   gap: 24px;
   width: 100%;
   justify-content: center;
}

.comments-row .comment-example-img {
   flex: 1;
   max-width: calc(50% - 12px);
}

@media (max-width: 768px) {
   .comments-row {
      flex-direction: column;
      gap: 16px;
   }
   .comments-row .comment-example-img {
      max-width: 100%;
   }
   .comments-demo-container {
      gap: 32px;
      margin-top: 24px;
   }
}

/* ========================================= */
/* BUILD AUTHORITY - THREE STEPS SECTION     */
/* ========================================= */
.three-steps-section {
   padding: 60px 24px;
   background: var(--primary-bg);
}

.step-card-custom {
   align-items: flex-start !important;
   text-align: left !important;
   gap: 16px !important;
}

.green-step-badge {
   background: var(--Neon-green-2, #18FB6F);
   color: #0a0b14;
   font-size: 13px;
   font-weight: 700;
   padding: 6px 16px;
   border-radius: 999px;
   display: inline-block;
   text-align: center;
}

.step-title-custom {
   margin-top: 8px !important;
   font-family: "Plus Jakarta Sans", sans-serif;
   font-size: 18px;
   font-weight: 700;
   color: #ffffff;
}

/* =================================================== */
/* BUILD AUTHORITY - HOW GROWREACH WORKS (CUSTOM)     */
/* =================================================== */
.how-works-custom-section {
   padding: 60px 24px;
   background: var(--primary-bg);
}

.how-works-images-box {
   display: flex;
   max-width: 1000px;
   align-items: flex-start;
   gap: 20px;
   border-radius: 20.55px;
   background: var(--Card-1---Dark, #161A25);
   margin: 40px auto 0;
}

.how-works-img-col {
   flex: 1;
}

.how-works-img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 12px;
}

.how-works-composer-box {
   background: rgba(255, 255, 255, 0.05);
   border: 2px solid rgba(255, 255, 255, 0.08);
   border-radius: 24px;
   padding: 24px;
   width: 100%;
}

.how-works-composer-box .how-works-img {
   border-radius: 12px;
}

.how-works-text-content {
   width: 100%;
   max-width: 860px;
   margin: 48px auto 0;
   text-align: left;
}

.how-works-text-content p {
   font-size: 16px;
   line-height: 1.6;
   color: var(--Body-text---Website, #C3CADA);
   margin-bottom: 24px;
}

.how-works-text-content p:last-child {
   margin-bottom: 0;
}

.how-works-checklist-box {
   width: 100%;
   max-width: 860px;
   margin: 40px auto 0;
   background: rgba(22, 26, 37, 0.6);
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 16px;
   padding: 32px;
}

.how-works-checklist-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px 40px;
}

.checklist-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
}

.checklist-icon {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
   margin-top: 2px;
}

.checklist-icon svg {
   width: 100%;
   height: 100%;
}

.checklist-text {
   font-size: 15px;
   line-height: 1.5;
   color: #fafafa;
}

@media (max-width: 768px) {
   .how-works-images-box {
      flex-direction: column;
      gap: 16px;
      border-radius: 16px;
   }

   .how-works-checklist-box {
      padding: 20px;
   }

   .how-works-checklist-grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }
}

/* =================================================== */
/* BUILD AUTHORITY - THE SHORT VERSION SECTION         */
/* =================================================== */
.short-version-section {
   padding: 60px 24px;
   background: var(--primary-bg);
}

.short-version-container {
   width: 100%;
   max-width: 940px;
   margin: 0 auto;
   text-align: left;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.short-version-badge {
   color: var(--Neon-green-2, #18FB6F);
   font-family: "Plus Jakarta Sans", sans-serif;
   font-size: 14px;
   font-weight: 500;
   padding: 8px 20px;
   border-radius: 999px;
   background: rgba(24, 251, 111, 0.05);
   border: 1px solid rgba(24, 251, 111, 0.2);
   display: inline-block;
   margin-bottom: 24px;
}

.short-version-title {
   text-align: left;
}

.section-title .highlight-purple {
   color: #a8b4fc;
   /* light purple/lavender */
}

.short-version-content p {
   font-size: 16px;
   line-height: 1.6;
   color: var(--text-secondary);
   margin-bottom: 24px;
}

.short-version-content p:last-child {
   margin-bottom: 0;
}

.short-version-bold {
   font-weight: 700 !important;
   color: var(--text-primary) !important;
   font-size: 16px !important;
   margin-top: 32px;
}

@media (max-width: 768px) {
   .short-version-title {
      font-size: 32px;
   }
}

.workflow-steps-grid--custom {
   max-width: 1000px !important;
}

/* =================================================== */
/* BUILD AUTHORITY - HERO BADGE CUSTOM                 */
/* =================================================== */
.badge-custom {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 20px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.1);
   margin-bottom: 24px;
}

.badge-text-custom {
   font-family: "Plus Jakarta Sans", sans-serif;
   font-size: 13px;
   font-weight: 600;
   color: #ffffff;
   letter-spacing: 1.5px;
   text-transform: uppercase;
}

.hero-title-highlight--purple {
   color: #C3C0FF !important;
   background: none !important;
   -webkit-text-fill-color: #C3C0FF !important;
}

.hero--build-authority {
   min-height: auto !important;
   padding-bottom: 60px !important;
}

.stats-container--build-authority {
   margin-top: 48px !important;
   margin-bottom: 0 !important;
}

.hero--build-authority .hero-image-container.desktop-only {
   margin-top: 0 !important;
}