/* ========== Reset & Base Styles ========== */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   /* font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
}

:root {
   /* Colors from Figma design */
   --primary-bg: #10141c;
   --secondary-bg: #1f2431;
   --text-primary: #fafafa;
   --text-secondary: #c3cada;
   --accent-green: #18fb6f;
   --primary-blue: #191BC5;
   --accent-blue: #5992ff;
   --accent-blue-light: #3c7fff;
   --accent-red: #c43400;
   --accent-red-dark: #cc2f32;
   --accent-green-dark: #669c64;
   --border-color: #161a25;
   --border-light: #f2ecff;

   /* Gradients */
   --gradient-primary: linear-gradient(104.127deg, rgb(2, 87, 250) 2.8731%, rgb(25, 27, 197) 96.995%);
   --gradient-secondary: linear-gradient(106.081deg, rgb(2, 87, 250) 2.8731%, rgb(25, 27, 197) 96.995%);
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   background: var(--primary-bg);
   color: var(--text-primary);
   overflow-x: hidden;
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* ========== Header Styles ========== */
.hp-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 80px;
   background: var(--primary-bg);
   border-bottom: 1px solid var(--border-color);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 1000;
   transition: box-shadow 0.3s ease;
}

.hp-header.scrolled {
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
   width: 100%;
   max-width: 1440px;
   padding: 0 100px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
}

.logo {
   font-size: 24px;
   font-weight: 700;
   color: var(--text-primary);
   letter-spacing: -0.5px;
}

.navigation {
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   align-items: center;
   height: 24px;
}

.nav-item {
   padding: 0 16px;
   font-size: 16px;
   font-weight: 400;
   color: var(--text-primary);
   text-transform: capitalize;
   cursor: pointer;
   transition: opacity 0.3s ease;
   text-decoration: none;
   white-space: nowrap;
}

.nav-item:hover {
   opacity: 0.7;
}

.header-actions {
   display: flex;
   gap: 16px;
   align-items: center;
}

/* ========== Button Styles ========== */
.btn {
   padding: 8px 25px;
   height: 40px;
   border-radius: 8px;
   font-size: 16px;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.3s ease;
   border: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   text-transform: capitalize;
   font-family: 'Plus Jakarta Sans', sans-serif;
   white-space: nowrap;
}

.btn-outline {
   background: transparent;
   border: 1px solid var(--border-light);
   color: var(--text-primary);
}

.btn-outline:hover {
   background: rgba(242, 236, 255, 0.1);
}

.btn-primary {
   background: var(--gradient-secondary);
   color: var(--text-primary);
   font-weight: 600;
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 30px rgba(2, 87, 250, 0.4);
}

.btn-large {
   height: 50px;
   padding: 16px 35px;
   font-weight: 600;
   font-size: 16px;
}

/* ========== Hero Section ========== */
.hero {
   margin-top: 60px;
   padding: 0 100px 60px;
   min-height: calc(100vh - 140px);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
   position: relative;
}

.hero-container {
   max-width: 1240px;
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 32px;
   margin-bottom: 32px;
}

.hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
   align-items: center;
   width: 100%;
}

.badge {
   background: white;
   border-radius: 9999px;
   padding: 10px 12px;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
}

.badge-text {
   font-size: 13px;
   font-weight: 700;
   line-height: 24px;
}

.badge-text-red {
   color: var(--accent-red);
}

.badge-text-green {
   color: var(--accent-green-dark);
}

.hero-title-container {
   display: flex;
   flex-direction: column;
   gap: 16px;
   align-items: center;
   max-width: 1040px;
   width: 100%;
}

.hero-title {
   font-size: 50px;
   font-weight: 700;
   line-height: 70px;
   text-align: center;
   max-width: 904px;
   text-transform: capitalize;
}

.hero-title-highlight {
   color: var(--accent-blue);
}

.hero-subtitle {
   font-size: 18px;
   line-height: 1.7;
   text-align: center;
   color: var(--text-secondary);
   max-width: 742px;
}

.hero-actions {
   display: flex;
   flex-direction: column;
   gap: 36px;
   align-items: center;
   margin-top: 0;
}

.button-group {
   display: flex;
   gap: 16px;
   align-items: center;
}

.feature-list {
   display: flex;
   gap: 40px;
   align-items: center;
}

.feature-item {
   display: flex;
   gap: 10px;
   align-items: center;
}

.checkbox-icon {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
}

.hero-image-container {
   width: 100%;
   max-width: 1040px;
   margin-top: 60px;
   display: flex;
   justify-content: center;
}

.hero-dashboard-image {
   width: 100%;
   height: auto;
   display: block;
}

.feature-text {
   font-size: 16px;
   font-weight: 400;
   color: var(--text-secondary);
   white-space: nowrap;
}

.stats-container {
   display: flex;
   gap: 32px;
   align-items: center;
   margin-top: 0;
}

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

.stat-value {
   font-size: 24px;
   font-weight: 600;
   line-height: 36px;
   color: var(--accent-green);
}

.stat-label {
   font-size: 13px;
   font-weight: 500;
   color: var(--text-secondary);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.stat-divider {
   width: 1px;
   height: 48px;
   background: var(--secondary-bg);
}

/* ========== Section Common Styles ========== */
.section {
   padding: 60px 60px;
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
}

.section-badge {
   color: var(--Neon-green-2, #18FB6F);
   font-family: "Plus Jakarta Sans", sans-serif;
   font-size: 16px;
   font-style: normal;
   font-weight: 500;
   line-height: normal;
   text-transform: capitalize;
   border-radius: 9999px;
   padding: 8px 24px;
   margin-bottom: 16px;

   background:
      linear-gradient(rgba(25, 27, 35, 0.7), rgba(25, 27, 35, 0.7)) padding-box,
      linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
   border: 1px solid transparent;
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   display: inline-flex;
   align-items: center;
   justify-content: center;
}

.section-title {
   color: var(--Header-White, #FAFAFA);
   text-align: center;
   font-family: "Plus Jakarta Sans";
   font-size: 40px;
   font-style: normal;
   font-weight: 600;
   line-height: 150%;
   max-width: 820px;
   margin-bottom: 13px;
}

.section-title--long {
   max-width: 100%;
}

.section-subtitle {
   color: var(--Body-text---Website, #C3CADA);
   text-align: center;
   font-family: "Plus Jakarta Sans";
   font-size: 18px;
   font-style: normal;
   font-weight: 400;
   line-height: 30.6px;
   max-width: 892px;
   margin-bottom: 0;
}

/* ========== Comparison Section ========== */
.comparison-container {
   display: flex;
   align-items: stretch;
   justify-content: center;
   gap: 24px;
   margin-top: 50px;
   width: 100%;
   max-width: 1040px;
   position: relative;
}

.comparison-card {
   flex: 1;
   border-radius: 16px;
   border: 1px solid #242832;
   background: #161A25;
   padding: 40px;
   display: flex;
   flex-direction: column;
   z-index: 1;
}

.comparison-card.highlight {
   border: 2px solid #2F76FF;
}

.comparison-title {
   font-size: 20px;
   font-weight: 600;
   color: var(--text-secondary);
   margin-bottom: 32px;
   text-align: left;
}

.comparison-list {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.comparison-item {
   display: flex;
   align-items: center;
   gap: 16px;
}

.comparison-icon {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
}

.comparison-text {
   font-size: 15px;
   color: var(--text-secondary);
   line-height: 150%;
   margin: 0;
   text-align: left;
}

.comparison-title--white {
   color: #fafafa;
}

.comparison-vs {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 56px;
   height: 56px;
   background: var(--secondary-bg);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   font-weight: 700;
   color: #fafafa;
   z-index: 10;
}

/* ========== Workflow / What We Do Section ========== */
.workflow-image-container {
   width: 100%;
   max-width: 1240px;
   margin-top: 50px;
   border-radius: 24px;
   display: flex;
   justify-content: center;
}

.workflow-image {
   width: 100%;
   height: auto;
   display: block;
}

.workflow-steps-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 32px;
   width: 100%;
   max-width: 1240px;
}

.workflow-step-card {
   background: #161A25;
   border: 1px solid #242832;
   border-radius: 12px;
   padding: 32px;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.workflow-step-icon {
   width: 80px;
   height: 80px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
}

.workflow-step-icon>img {
   width: 48px;
   height: 48px;
}

.workflow-step-title {
   font-size: 18px;
   font-weight: 600;
   color: var(--text-primary);
   margin: 0;
   margin-top: 32px;
}

.workflow-step-desc {
   font-size: 15px;
   line-height: 1.6;
   color: var(--text-secondary);
   margin: 0;
}

/* ========== How Growreach Works Section ========== */
.how-it-works-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-top: 50px;
   width: 100%;
   max-width: 1100px;
   /* Slightly wider to match design */
}

.how-it-works-item-group {
   display: flex;
   flex-direction: row;
   gap: 20px;
   width: 100%;
}

.how-it-works-info-container {
   padding: 32px;
}

.how-it-works-card {
   background: linear-gradient(145deg, rgba(25, 27, 197, 0.15) 0%, rgba(10, 12, 20, 0.1) 100%);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   transition: transform 0.3s ease, border-color 0.3s ease;
   justify-content: flex-end;
   position: relative;
   min-height: 600px;
}

.how-it-works-card:hover {
   border-color: rgba(24, 251, 111, 0.3);
   transform: translateY(-5px);
}

.how-it-works-card--big {
   flex: 1.3;
}

.how-it-works-card--small {
   flex: 1;
}

/* Stack on mobile */
@media (max-width: 900px) {
   .how-it-works-item-group {
      flex-direction: column;
   }

   .how-it-works-card {
      flex: initial;
      width: 100%;
   }
}

.step-badge {
   background: var(--accent-green);
   color: #10141c;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 13px;
   font-weight: 700;
   display: inline-block;
   width: fit-content;
   text-transform: capitalize;
   position: absolute;
   top: 32px;
   left: 32px;
}

.how-it-works-img-container {
   width: 100%;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
}

.how-it-works-img-container--step-1>img {
   margin-bottom: -35px;
   width: 365px;
   height: auto;
}

.how-it-works-img-container--step-2>img {
   margin-bottom: -10px;
   margin-right: -120px;
   width: auto;
   height: 328px;
}

.how-it-works-img-container--step-3>img {
   margin-bottom: -200px;
   margin-right: -70px;
   width: 425px;
   height: auto;
}

.how-it-works-img-container--step-4>img {
   margin-bottom: -5px;
   width: 450px;
   height: auto;
}

.how-it-works-img-container--step-5>img {
   margin-bottom: -60px;
   width: 420px;
   height: auto;
}

.how-it-works-img-container--step-6>img {
   margin-bottom: -60px;
   width: 420px;
   height: auto;
}



.how-it-works-image {
   width: 100%;
   height: auto;
   display: block;
}

.how-it-works-title {
   font-size: 20px;
   font-weight: 600;
   color: var(--text-primary);
   margin: 0;
   margin-bottom: 10px;
}

.how-it-works-desc {
   font-size: 15px;
   font-weight: 400;
   line-height: 170%;
   color: var(--text-secondary);
   margin: 0;
}

/* ========== Features Grid ========== */
.features-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 60px;
   width: 100%;
   max-width: 1240px;
}

.feature-card {
   background: rgba(255, 255, 255, 0.02);
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 16px;
   padding: 32px;
   display: flex;
   flex-direction: column;
   gap: 20px;
   transition: all 0.3s ease;
}

.feature-card:hover {
   transform: translateY(-4px);
   border-color: rgba(89, 146, 255, 0.3);
   box-shadow: 0 10px 40px rgba(89, 146, 255, 0.1);
}

.feature-icon {
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 12px;
   background: linear-gradient(135deg, rgba(2, 87, 250, 0.1), rgba(25, 27, 197, 0.1));
}

.feature-number {
   font-size: 48px;
   font-weight: 700;
   color: rgba(89, 146, 255, 0.2);
   line-height: 1;
}

.feature-title {
   font-size: 20px;
   font-weight: 600;
   color: var(--text-primary);
   margin: 0;
}

.feature-description {
   font-size: 15px;
   line-height: 1.6;
   color: var(--text-secondary);
   margin: 0;
}

/* ========== Funnel Section ========== */
.funnel-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
   margin-top: 50px;
   width: 100%;
   max-width: 1240px;
}

.funnel-card {
   background: rgba(255, 255, 255, 0.02);
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 12px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   transition: all 0.3s ease;
}

.funnel-card-active {
   background: #0257FA;
   border: 2px solid #E2DFFF;
}

.funnel-stage {
   font-size: 10px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: #FAFAFA;
   margin-bottom: 50px;
}

.funnel-desc {
   font-size: 14px;
   color: #9BA3B5;
   line-height: 1.4;
   margin: 0;
   font-weight: 600;
}

.funnel-card-active .funnel-desc {
   color: white;
}

.funnel-value {
   font-size: 40px;
   font-weight: 700;
   color: #fafafa;
   margin: 24px 0;
   line-height: 1;
}

.funnel-card-active .funnel-value {
   color: white;
}

.funnel-metric {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   font-weight: 500;
   color: var(--accent-blue);
   line-height: 1;
}

.funnel-card-active .funnel-metric {
   color: white;
}

.funnel-metric svg {
   width: 15px;
   height: 16px;
}

.funnel-footer {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   margin-top: 32px;
   width: 100%;
   max-width: 1040px;
}

.funnel-footer-line {
   height: 1px;
   background: rgba(255, 255, 255, 0.1);
   flex-grow: 1;
   max-width: 48px;
}

.funnel-footer-text {
   font-size: 13px;
   color: var(--text-secondary);
   text-align: center;
}

/* ========== Feature Tabs Section ========== */
.tabs-navigation {
   display: flex;
   gap: 12px;
   background: rgba(255, 255, 255, 0.02);
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 99px;
   padding: 8px;
   margin: 50px auto 50px;
   width: fit-content;
   max-width: 100%;
   overflow-x: auto;
   scrollbar-width: none;
}

.tabs-navigation::-webkit-scrollbar {
   display: none;
}

.tab-btn {
   padding: 12px 24px;
   border-radius: 99px;
   background: transparent;
   color: var(--accent-green);
   font-weight: 500;
   font-size: 15px;
   border: none;
   cursor: pointer;
   transition: all 0.3s ease;
   white-space: nowrap;
}

.tab-btn:hover {
   background: rgba(24, 251, 111, 0.1);
}

.tab-btn.active {
   background: var(--accent-green);
   color: #10141c;
   font-weight: 600;
}

.feature-slider-container {
   width: 100vw;
   max-width: 100%;
   position: relative;
   left: 50%;
   transform: translateX(-50%);
   overflow: hidden;
   padding: 10px 0;
}

.feature-slider-track {
   display: flex;
   transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
   align-items: center;
}

.feature-slide {
   flex: 0 0 1040px;
   width: 1040px;
   padding: 0 20px;
   box-sizing: border-box;
   transition: opacity 0.5s ease, transform 0.5s ease;
   opacity: 0.3;
   transform: scale(0.85);
   pointer-events: none;
}

.feature-slide.active-slide {
   opacity: 1;
   transform: scale(1);
   pointer-events: auto;
}

.feature-slide-content {
   background: #161A25;
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 24px;
   display: grid;
   grid-template-columns: 1.2fr 1.5fr;
   overflow: hidden;
   min-height: 480px;
}

.feature-slide-text {
   padding: 60px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
}

.feature-slide-title {
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 24px;
   color: var(--text-primary);
}

.feature-slide-desc {
   font-size: 16px;
   line-height: 1.6;
   color: var(--text-secondary);
   margin-bottom: 40px;
   max-width: 440px;
}

.feature-slide-img-box {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 40px;
}

.feature-slide-img {
   width: 100%;
   max-width: 100%;
   height: auto;
   border-radius: 12px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
   .feature-slide {
      flex: 0 0 100vw;
      width: 100vw;
   }
}

@media (max-width: 900px) {
   .tabs-navigation {
      display: none;
   }

   .hero-title-container {
      gap: 0;
   }

   .hero-image-container.mobile-only {
      margin: 20px 0 !important;
   }

   .hero-subtitle.mobile-only {
      margin-bottom: 20px !important;
   }

   .stats-container.mobile-only {
      margin-bottom: 20px !important;
   }

   .feature-slider-container {
      padding: 0;
      overflow: visible;
   }

   .feature-slider-track {
      flex-direction: column;
      gap: 24px;
      transform: none !important;
   }

   .feature-slide {
      flex: 0 0 auto;
      width: 100%;
      opacity: 1;
      transform: none;
      pointer-events: auto;
      padding: 0;
   }

   .feature-slide-content {
      grid-template-columns: 1fr;
      min-height: auto;
   }

   .feature-slide-text {
      padding: 40px 30px;
   }

   .feature-slide-img-box {
      padding: 20px;
      border-left: none;
   }
}



/* ========== Testimonial Section ========== */
.testimonial-section {
   overflow: hidden;
   padding-top: 60px;
   padding-bottom: 60px;
}

.testimonial-slider-wrapper {
   position: relative;
   width: 100%;
   max-width: 1240px;
   margin: 0 auto;
   padding: 50px 20px 40px;
}

.testimonial-track {
   display: flex;
   gap: 24px;
   align-items: stretch;
}

.testimonial-card {
   flex: 1;
   min-width: 0;
   /* allows text truncation if needed */
   cursor: pointer;
   transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
   opacity: 0.8;
}

.testimonial-card.t-active {
   flex: 2.5;
   opacity: 1;
   cursor: default;
}

.testimonial-video-box {
   position: relative;
   width: 100%;
   height: 620px;
   border-radius: 20px;
   overflow: hidden;
   background: #0a0c14;
   transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card.t-active .testimonial-video-box {
   height: 620px;
   /* Make the active card taller like the image */
}

.testimonial-thumbnail {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: opacity 0.3s ease;
}

.testimonial-overlay {
   position: absolute;
   inset: 0;
   background: rgba(10, 12, 20, 0.5);
   /* The gray layer */
   transition: background 0.5s ease;
}

.testimonial-card.t-active .testimonial-overlay {
   background: rgba(10, 12, 20, 0);
   /* No gray overlay on active */
}

.testimonial-play-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: rgba(0, 0, 0, 0.6);
   /* like the image, dark circle */
   border: 1px solid rgba(255, 255, 255, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.3s ease;
   z-index: 3;
}

.testimonial-card.t-active .testimonial-play-btn {
   width: 72px;
   height: 72px;
   background: rgba(0, 0, 0, 0.4);
   border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-play-btn:hover {
   background: rgba(0, 0, 0, 0.8);
   transform: translate(-50%, -50%) scale(1.05);
}

.testimonial-play-btn svg {
   width: 20px;
   height: 20px;
   fill: white;
   margin-left: 3px;
}

.testimonial-card.t-active .testimonial-play-btn svg {
   width: 28px;
   height: 28px;
}

.testimonial-video-el {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: none;
   z-index: 4;
   border-radius: 20px;
}

.testimonial-video-el.playing {
   display: block;
}

.testimonial-info {
   margin-top: 20px;
   padding: 0 4px;
}

.testimonial-name {
   font-size: 18px;
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: 4px;
}

.testimonial-role {
   font-size: 14px;
   color: var(--text-secondary);
}

.testimonial-nav {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 16px;
}

.t-nav-btn {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 15px 25px;
   border-radius: 8px;
   font-size: 15px;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.25s ease;
   line-height: 0;
}

.t-nav-btn.prev {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.15);
   color: var(--text-primary);
}

.t-nav-btn.prev:hover {
   background: rgba(255, 255, 255, 0.05);
}

.t-nav-btn.next {
   background: white;
   border: 1px solid white;
   color: #10141c;
   font-weight: 600;
}

.t-nav-btn.next:hover {
   background: #f0f0f0;
}

/* Active (filled white) state — applied dynamically */
.t-nav-btn.active {
   background: white;
   border: 1px solid white;
   color: #10141c;
   font-weight: 600;
}

.t-nav-btn.active:hover {
   background: #f0f0f0;
}

/* Disabled state */
.t-nav-btn.t-disabled {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.1);
   color: rgba(255, 255, 255, 0.25);
   cursor: not-allowed;
   pointer-events: none;
}

.t-nav-btn.t-disabled:hover {
   background: transparent;
}

.t-nav-btn svg {
   width: 16px;
   height: 16px;
}

@media (max-width: 900px) {
   .testimonial-nav {
      display: none;
   }

   .testimonial-slider-wrapper {
      padding: 40px 0;
      overflow: visible;
   }

   .testimonial-track {
      flex-direction: column;
      gap: 32px;
      transform: none !important;
   }

   .testimonial-card {
      flex: none;
      width: 100%;
      opacity: 1 !important;
      cursor: default;
   }

   .testimonial-video-box {
      height: 620px !important;
   }

   .testimonial-overlay {
      background: rgba(10, 12, 20, 0.2) !important;
   }

   .testimonial-card.t-active .testimonial-overlay {
      background: transparent !important;
   }
}

/* ========== FAQ Section ========== */
.faq-section {
   padding-top: 60px;
   padding-bottom: 60px;
}

.faq-container {
   width: 100%;
   max-width: 840px;
   margin: 50px auto 0;
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.07);
   border-radius: 20px;
   overflow: hidden;
}



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

.faq-question {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 26px 32px;
   background: transparent;
   border: none;
   color: var(--text-primary);
   font-size: 16px;
   font-weight: 600;
   text-align: left;
   cursor: pointer;
   transition: background 0.2s ease;
   font-family: inherit;
}

.faq-question:hover {
   background: rgba(255, 255, 255, 0.03);
}

.faq-question.open {
   background: rgba(255, 255, 255, 0.02);
}

.faq-chevron {
   flex-shrink: 0;
   width: 20px;
   height: 20px;
   color: var(--text-secondary);
   transition: transform 0.3s ease;
}

.faq-question.open .faq-chevron {
   transform: rotate(180deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease;
   padding: 0 32px;
}

.faq-answer.open {
   max-height: 400px;
   padding: 0 32px 26px;
}

.faq-answer p {
   font-size: 16px;
   font-style: normal;
   font-weight: 400;
   line-height: 27.2px;
   color: var(--text-secondary);
   margin: 0;
}

/* ========== Blue CTA Section ========== */
.blue-cta-section {
   padding: 60px 100px 80px;
   position: relative;
}

.blue-glow-bg {
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translate(-50%, 50%);
   width: 100%;
   max-width: 1200px;
   height: 500px;
   border-radius: 33554400px;
   opacity: 0.1;
   background: #0257FA;
   filter: blur(250px);
   z-index: -1;
   pointer-events: none;
}

.blue-cta-container {
   position: relative;
   width: 100%;
   max-width: 1240px;
   margin: 0 auto;
   background: #191BC5;
   border-radius: 24px;
   padding: 80px 60px;
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   overflow: hidden;
}

/* Dot grid overlay */
.blue-cta-container::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image:
      radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
   background-size: 36px 36px;
   pointer-events: none;
}

/* Vignette so dots fade at edges */
.blue-cta-container::after {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(ellipse at center, transparent 40%, rgba(26, 31, 200, 0.85) 100%);
   pointer-events: none;
}

.blue-cta-logo {
   position: relative;
   z-index: 2;
   width: 64px;
   height: 64px;
   background: white;
   border-radius: 16px;
   margin-bottom: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.blue-cta-logo img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.blue-cta-title {
   position: relative;
   z-index: 2;
   font-size: 40px;
   font-weight: 700;
   color: white;
   max-width: 680px;
   line-height: 1.2;
   margin-bottom: 20px;
}

.blue-cta-subtitle {
   position: relative;
   z-index: 2;
   font-size: 16px;
   line-height: 1.6;
   color: #F2ECFF;
   max-width: 520px;
   margin-bottom: 48px;
}

.blue-cta-buttons {
   position: relative;
   z-index: 2;
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   justify-content: center;
}

.btn-blue-cta-primary {
   padding: 14px 32px;
   border-radius: 8px;
   background: white;
   color: #1a1fc8;
   font-weight: 600;
   font-size: 15px;
   border: 2px solid white;
   cursor: pointer;
   transition: all 0.25s ease;
   font-family: inherit;
   display: flex;
   align-items: center;
   gap: 8px;
}

.btn-blue-cta-primary:hover {
   background: #f0f0f0;
   transform: translateY(-2px);
}

.btn-blue-cta-outline {
   padding: 14px 32px;
   border-radius: 8px;
   background: transparent;
   color: white;
   font-weight: 500;
   font-size: 15px;
   border: 2px solid rgba(255, 255, 255, 0.5);
   cursor: pointer;
   transition: all 0.25s ease;
   font-family: inherit;
}

.btn-blue-cta-outline:hover {
   border-color: white;
   background: rgba(255, 255, 255, 0.08);
   transform: translateY(-2px);
}

.final-cta-container {
   background-color: rgba(255, 255, 255, 0.096);
   background-blend-mode: lighten;
}

@media (max-width: 768px) {
   .blue-cta-section {
      padding: 40px 16px 60px;
      overflow: hidden;
   }

   .checkbox-icon {
      width: 16px;
      height: 16px;
   }

   .blue-glow-bg {
      width: 150%;
      height: 300px;
      filter: blur(150px);
   }

   .blue-cta-container {
      padding: 32px;
   }

   .blue-cta-title {
      font-size: 24px;
      line-height: 150%;
   }

   .blue-cta-subtitle {
      font-size: 13px;
      color: #fafafa;
      margin-bottom: 28px;
      line-height: 170%;
   }

   .blue-cta-buttons {
      flex-direction: column;
      width: 100%;
   }

   .btn-blue-cta-primary,
   .btn-blue-cta-outline {
      justify-content: center;
   }
}

/* ========== Final CTA Section ========== */
.final-cta-container {
   width: 100%;
   max-width: 1240px;
   margin: 0px auto;
   border-radius: 24px;
   background-image: url('../images/homepage/green_cta_section_bg.webp');
   background-size: cover;
   background-position: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 80px 40px;
   box-shadow: 0 20px 40px rgba(24, 251, 111, 0.1);
}

.final-cta-logo {
   width: 64px;
   height: 64px;
   border-radius: 12px;
   margin-bottom: 32px;
}

.final-cta-title {
   font-size: 36px;
   font-weight: 700;
   color: #10141c;
   margin-bottom: 20px;
   line-height: 1.2;
   max-width: 700px;
}

.final-cta-subtitle {
   font-size: 16px;
   line-height: 1.6;
   color: #10141c;
   max-width: 800px;
   margin-bottom: 40px;
   opacity: 0.9;
}

.final-cta-buttons {
   display: flex;
   gap: 16px;
   justify-content: center;
   flex-wrap: wrap;
}

.btn-icon {
   width: 20px;
   height: 20px;
}

.btn-white {
   background: white;
   color: var(--primary-blue);
   font-weight: 600;
   border: none;
   padding: 16px 25px;
   height: 50px;
}

.btn-white:hover {
   background: #f8f9fa;
   transform: translateY(-2px);
}

.btn-outline-white {
   background: transparent;
   border: 1px solid white;
   color: white;
   height: 50px;
}

.btn-outline-white:hover {
   background: rgba(255, 255, 255, 0.1);
   transform: translateY(-2px);
}

/* ========== Footer Styles ========== */
.hp-footer {
   padding: 60px 100px 40px;
}

.hp-footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
   gap: 60px;
   margin-bottom: 40px;
}

.hp-footer-brand {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.hp-footer-logo {
   font-size: 24px;
   font-weight: 700;
}

.hp-footer-description {
   font-size: 14px;
   line-height: 1.6;
   color: var(--text-secondary);
   max-width: 320px;
}

.hp-footer-column {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.hp-footer-column-title {
   font-size: 16px;
   font-weight: 600;
   margin-bottom: 8px;
}

.hp-footer-link {
   font-size: 14px;
   color: var(--text-secondary);
   text-decoration: none;
   transition: color 0.3s ease;
}

.hp-footer-link:hover {
   color: var(--text-primary);
}

.hp-footer-bottom {
   padding-top: 32px;
   border-top: 1px solid var(--border-color);
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.hp-copyright {
   font-size: 14px;
   color: var(--text-secondary);
}

.social-links {
   display: flex;
   gap: 16px;
}

.social-link {
   width: 36px;
   height: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.05);
   transition: all 0.3s ease;
   text-decoration: none;
   color: var(--text-primary);
}

.social-link:hover {
   background: rgba(89, 146, 255, 0.2);
   transform: translateY(-2px);
}

/* ========== Mobile Menu ========== */
.mobile-menu-toggle {
   display: none;
   width: 40px;
   height: 40px;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 6px;
   cursor: pointer;
   background: transparent;
   border: none;
}

.mobile-menu-toggle span {
   width: 24px;
   height: 2px;
   background: var(--text-primary);
   transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
   transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
   transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
   display: none;
   position: fixed;
   top: 80px;
   left: 0;
   width: 100%;
   background: var(--primary-bg);
   border-bottom: 1px solid var(--border-color);
   padding: 24px;
   flex-direction: column;
   gap: 16px;
   z-index: 999;
   max-height: calc(100vh - 80px);
   overflow-y: auto;
}

.mobile-menu.active {
   display: flex;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.fade-in-up {
   animation: fadeInUp 0.6s ease-out;
}

@keyframes float {

   0%,
   100% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-10px);
   }
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {

   .header-container,
   .hero,
   .section,
   .hp-footer {
      padding-left: 40px;
      padding-right: 40px;
   }

   .final-cta-container {
      margin-left: 40px;
      margin-right: 40px;
      width: auto;
   }

   .features-grid,
   .funnel-grid,
   .workflow-steps-grid,
   .how-it-works-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .funnel-grid {
      margin-top: 24px;
   }

   .feature-slider-container,
   .how-it-works-grid,
   .workflow-image-container,
   .comparison-container {
      margin-top: 24px;
   }

   .feature-slide-text {
      padding: 16px;
   }

   .feature-slide-title {
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      text-transform: capitalize;
      margin-bottom: 14px;
   }

   .feature-slide-desc {
      font-size: 13px;
      font-style: normal;
      font-weight: 400;
      line-height: 160%;
      margin-bottom: 24px;
   }

   .funnel-footer {
      margin-top: 20px;
   }

   .funnel-footer-text {
      text-align: start;
   }

   .funnel-footer-line {
      display: none;
   }

   .hp-footer-content {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
   }
}

@media (max-width: 768px) {
   .header-container {
      padding: 0 24px;
   }

   .final-cta-buttons>button {
      width: 100%;
   }

   .navigation {
      display: none;
   }

   .header-actions {
      display: none;
   }

   .mobile-menu-toggle {
      display: flex;
   }

   .hero,
   .section,
   .hp-footer {
      padding-left: 16px;
      padding-right: 16px;
   }

   .final-cta-container {
      margin-left: 24px;
      margin-right: 24px;
      padding: 32px 32.18px 45px 32.18px;
      width: auto;
   }

   .final-cta-subtitle {
      margin-bottom: 24px;
   }

   .feature-slide-text .btn {
      font-size: 13px;
      padding: 12px 24px;
      font-weight: 600;
   }

   .faq-answer.open {
      padding: 0 24px 26px;
   }

   .badge-text {
      font-size: 10px;
      line-height: normal;
   }

   .badge-icon {
      width: 12px;
      height: 12px;
   }

   .hero-title {
      font-size: 20px;
      line-height: 150%;
   }

   .hero-content {
      gap: 16px
   }

   .hero-subtitle {
      font-size: 14px;
      line-height: 170%;
   }

   .btn-large {
      font-size: 14px;
   }

   .section {
      align-items: flex-start;
      padding: 30px 16px;
   }

   .section-title {
      font-size: 24px;
      text-align: left;
      line-height: 150%;
      margin-bottom: 12px;
   }

   .section-subtitle {
      font-size: 13px;
      text-align: left;
      line-height: 170%;
   }

   .feature-text {
      font-size: 14px;
   }

   .funnel-grid {
      gap: 25px;
   }

   .section-badge {
      font-size: 10px;
      margin-bottom: 12px;
      padding: 10px;
   }

   .final-cta-title {
      font-size: 24px;
      font-weight: 700;
      line-height: 150%;
   }

   .button-group {
      flex-direction: column;
      width: 100%;
   }

   .btn-large {
      width: 100%;
   }

   .hero-actions {
      width: 100%;
   }

   .stat-value {
      font-size: 16px;
      line-height: normal;
   }

   .stat-label {
      font-size: 10px;
      line-height: 160%;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-align: center;
   }

   .funnel-card {
      padding: 24px;
   }

   .funnel-stage {
      margin-bottom: 32px;
      font-size: 10px;
   }

   .funnel-value {
      margin: 16px 0;
   }

   .funnel-desc {
      font-size: 13px;
   }

   .comparison-title {
      font-size: 18px;
      font-weight: 600;
      line-height: normal;
      margin-bottom: 24px;
   }

   .comparison-card {
      padding: 24px;
   }

   .comparison-text {
      font-size: 13px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
   }

   .faq-container {
      margin-top: 32px;
   }

   .workflow-step-title {
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      margin-top: 0;
   }

   .faq-question {
      padding: 24px 24px 12px 24px;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 23.8px;
   }


   .faq-answer p {
      font-size: 13px;
      font-style: normal;
      font-weight: 400;
      line-height: 22.1px;
   }

   .workflow-step-icon>img {
      width: 36px;
      height: 36px;
   }

   .workflow-step-icon {
      margin-bottom: 16px;
      width: 60px;
      height: 60px;
   }

   .workflow-step-card {
      gap: 8px;
      padding: 20px;
   }

   .workflow-step-desc {
      font-size: 13px;
      font-style: normal;
      font-weight: 400;
      line-height: 170%;
   }

   .how-it-works-card {
      min-height: auto;
   }

   .step-badge {
      position: static;
      margin: 16px 0 16px 16px
   }

   .how-it-works-title {
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      margin-bottom: 12px;
   }

   .how-it-works-img-container {
      padding: 0 16px;
   }

   .how-it-works-img-container>img {
      width: 100% !important;
      height: auto !important;
      margin-right: 0px !important;
      margin-bottom: -10px !important;
   }

   .final-cta-container {
      margin: 0;
   }

   .how-it-works-desc {
      font-size: 13px;
      font-style: normal;
   }

   .how-it-works-info-container {
      padding: 16px;
   }

   .feature-list {
      flex-direction: column;
      gap: 10px;
      width: 100%;
   }

   .final-cta-logo,
   .blue-cta-logo {
      margin-bottom: 20px;
   }


   .feature-item {
      width: 100%;
      justify-content: center;
   }

   .hero {
      padding-bottom: 30px;
      margin-top: 60px;
   }

   .hero-container {
      gap: 0;
      margin-bottom: 0;
   }

   .stats-container {
      justify-content: space-between;
   }

   .stat-divider {
      min-height: 48px;
      width: 1px;
   }

   .features-grid,
   .funnel-grid,
   .workflow-steps-grid,
   .how-it-works-grid,
   .pricing-grid {
      grid-template-columns: 1fr;
   }

   .feature-slide-img-box {
      padding: 16px;
   }

   .testimonial-slider-wrapper {
      padding-bottom: 0;
   }

   .feature-slide-content {
      display: flex;
      flex-direction: column-reverse;
   }

   .hp-footer-content {
      grid-template-columns: 1fr;
      gap: 32px;
   }

   .hp-footer-bottom {
      flex-direction: column;
      gap: 24px;
      text-align: center;
   }

   .comparison-container {
      flex-direction: column;
   }
}

/* ========== Utility Classes ========== */
.text-gradient {
   background: linear-gradient(90deg, #5992ff, #3c7fff);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.container {
   width: 100%;
   max-width: 1240px;
   margin: 0 auto;
}

.mobile-only {
   display: none !important;
}

@media (max-width: 768px) {
   .desktop-only {
      display: none !important;
   }

   .mobile-only {
      display: flex !important;
   }

   p.mobile-only {
      display: block !important;
   }
}