section.profit-stats {
  background-color: #dbedee;
  padding: 4rem 1rem;
  text-align: center;
  border-radius: 0;
  -webkit-box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
}

section.profit-stats h3 {
  color: #111;
  margin: 0 auto;
  max-width: 1100px;
}

.card {
  transition: transform 0.3s ease,box-shadow 0.3s ease;
}

.resource-grid {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 1.5rem;
  color: #111;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  padding: 1.5rem 1.75rem;
  border-radius: 0;
  min-height: 200px;
  flex-direction: row;
  -webkit-box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
}

.resource-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.resource-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-content h5 {
  font-weight: 700;
  color: #222;
  margin: 0 0 .4rem 0;
}

.resource-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 .8rem 0;
  flex-grow: 1;
}

.resource-content a {
  font-weight: 600;
  font-size: 1rem;
  color: #0fd46c;
  text-decoration: none;
  position: relative;
  padding-right: 1.2rem;
  cursor: pointer;
  align-self: flex-start;
}

.resource-content a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.resource-content a:hover, .resource-content a:focus {
  color: #0a9a4b;
}

.resource-content a:hover::after, .resource-content a:focus::after {
  transform: translateY(-50%);
}

@media (max-width:600px) {
  .resource-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
  }
}

@media (max-width:600px) {
  .resource-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
}

@media (max-width:600px) {
  .resource-content p, .resource-content a {
    font-size: .95rem;
  }
}

@media (max-width:600px) {
  .resource-content a {
    align-self: center;
  }
}

.discover-section {
  max-width: 1100px;
  margin: 3rem auto;
  color: #222;
}

.cards-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  padding: 2em;
}

.discover-card {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.discover-card h3 {
  margin: 0;
  font-weight: 700;
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 1em;
}

.discover-card a {
  font-weight: 600;
  color: #0fd46c;
  text-decoration: none;
  font-size: 1rem;
  align-self: flex-start;
  position: relative;
  padding-right: 1.2rem;
  cursor: pointer;
}

.discover-card a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  padding: 5px;
  transform: translateY(-50%);
  font-weight: 700;
}

.discover-card a:hover, .discover-card a:focus {
  color: #0a9a4b;
  outline: none;
}

.discover-card a:hover::after, .discover-card a:focus::after {
  transform: translateY(-50%)translateX(4px);
}

.compare-link {
  margin-top: 3rem;
  text-align: center;
}

.compare-link a {
  font-weight: 700;
  color: #0fd46c;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
}

.compare-link a:hover, .compare-link a:focus {
  color: #0a9a4b;
  outline: none;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.text-grid {
  text-align: left;
  padding: 20px;
}

.text-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.text-grid-item {
  max-width: 245px;
  text-align: center;
  width: 75%;
  margin: 0 auto;
}

@media (max-width:768px) {
  .text-grid-item {
    width: 100%;
    max-width: 275px;
  }
}

.text-grid-item img {
  width: 80px;
  height: auto;
}

.text-grid-item h4 {
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
  font-weight: 700;
}

.text-grid-item p {
  color: #555;
}

.input-container {
  position: relative;
  margin-bottom: 20px;
}

.input-container input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
  font-size: 16px;
  transition: 0.3s;
  pointer-events: none;
}

.input-container input:focus + label, .input-container input:not(:placeholder-shown) + label {
  top: 6px;
  left: 10px;
  font-size: 12px;
  color: #0a8543;
  background: #fff;
  padding: 0 5px;
}

.custom-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.6s ease-in-out;
  padding: 6rem 0;
  color: #fff;
  z-index: 1;
}

.custom-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / .35);
  z-index: -1;
}

.custom-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.custom-hero-content {
  max-width: 650px;
  text-align: left;
  margin-top: 3em;
}

.custom-hero-logo img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.custom-hero-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.custom-hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #f8f9fa;
}

.custom-hero-cta {
  margin-top: 1rem;
}

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

@media (max-width:991px) {
  .custom-hero {
    min-height: auto;
    padding: 4rem 1rem;
    text-align: center;
  }
}

@media (max-width:991px) {
  .custom-hero-content {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width:991px) {
  .custom-hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width:576px) {
  .custom-hero {
    padding: 7rem 1rem;
  }
}

@media (max-width:576px) {
  .custom-hero-subtitle {
    font-size: 1rem;
  }
}

.ecosystem-module {
  padding: 60px 20px;
}

.ecosystem-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 2em 0;
  align-items: center;
  background-color: #0d333f;
  border-radius: 8px;
}

.ecosystem-image {
  flex: 1 1 45%;
  text-align: center;
  margin-top: -130px;
}

@media (max-width:768px) {
  .ecosystem-image {
    margin-top: 0!important;
  }
}

.ecosystem-content {
  flex: 1 1 50%;
  padding: 1em;
}

.ecosystem-badge {
  display: inline-block;
  background: #fff;
  color: #07c;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ecosystem-title {
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

@media (max-width:768px) {
  .ecosystem-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:768px) {
  .ecosystem-content {
    flex: 1 1 100%;
  }
}

.banner-section {
  background-color: #28a745;
  text-align: center;
  padding: 72px 20px;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.banner-container {
  max-width: 900px;
  margin: 0 auto;
}

.banner-heading {
  font-weight: 700;
}

.banner-subtext {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

@media (max-width:768px) {
  .banner-subtext {
    font-size: 1rem;
  }
}

.cleanup-info {
  margin: 1.5em auto;
  max-width: 75%;
  text-align: center;
}

.cleanup-info p {
  margin: 1rem 0;
  font-size: 1rem;
  color: #444;
}

@media (max-width:768px) {
  .cleanup-info {
    max-width: 90%;
  }
}

.rounded-top-corners {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.badge {
  background: #ff8c00;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

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

.testimonial-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.review-logo-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review-logo-container img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  flex-grow: 1;
  font-style: italic;
}

.blockquote-footer {
  font-size: .9rem;
  color: #666;
  font-weight: 700;
}

.bi.bi-check-circle-fill {
  color: #34bf49;
}

@media (max-width:768px) {
  .text-grid-container {
    flex-direction: column;
    align-items: center;
  }
}

.input-container input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
}

.input-container input:focus {
  border-color: #34bf49;
  box-shadow: 0 0 0 1px rgb(52 191 73 / .1);
}

.input-container input:focus + label, .input-container input:not(:placeholder-shown) + label {
  top: 3px;
  left: 10px;
  font-size: 12px;
  color: #777;
  background: #fff;
  padding: 0 5px;
}

.testimonial-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  color: #222;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: #f9f9f9;
  border-radius: 0;
  padding: 2rem;
  transition: all 0.6s ease-in-out;
  -webkit-box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
}

.testimonial-image-wrapper {
  flex: 1 1 300px;
  max-width: 300px;
}

.testimonial-image-wrapper img {
  width: 100%;
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.testimonial-text-wrapper {
  flex: 2 1 500px;
  color: #777;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .25rem;
}

.testimonial-author-note {
  font-size: .875rem;
  color: #666;
}

@media (max-width:768px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}

@media (max-width:768px) {
  .testimonial-image-wrapper {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width:768px) {
  .testimonial-text-wrapper {
    flex: unset;
    margin-top: 1.5rem;
  }
}

.policy-page {
  color: #333;
  line-height: 1.6;
}

.policy-header {
  padding-top: 8em;
  background: #ececec;
  padding-right: 1em;
  padding-bottom: 3em;
  padding-left: 1em;
}

.policy-header h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.policy-updated {
  font-size: .95rem;
  color: #777;
  margin-top: 8px;
}

@media (max-width:576px) {
  .policy-body {
    padding: 20px;
  }
}

.policy-content h4 {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #0fd46c;
}

.policy-content p {
  margin-bottom: 15px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✔";
  color: #34bf49;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.policy-disclaimer {
  margin-top: 40px;
  padding: 15px;
  background: #f8f9fa;
  font-size: .9rem;
  color: #666;
  border-left: 4px solid var(--accent-color,#0077cc);
}

@media (max-width:768px) {
  .policy-header h1 {
    font-size: 1.75rem;
  }
}

@media (max-width:768px) {
  .policy-content h4 {
    font-size: 1.15rem;
  }
}

.plan-box {
  transition: all 0.6s ease-in-out;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.1);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.1);
}

.hero-image {
  transition: transform 0.4s ease-in-out;
  border-radius: 50%;
}

.plan-box {
  transition: transform 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
}

.plan-box:hover {
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.1);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.1);
}

.bi.bi-check-circle-fill {
  color: #28a745;
}

.hero-heading {
  max-width: 330px;
}

@media (max-width:767px) {
  .hero-heading {
    max-width: 225px;
  }
}

.card-container {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  text-align: left;
  -webkit-box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  border: none;
}

.card-image {
  width: 100%;
}

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

.card-content {
  padding: 20px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-content .btn-internal {
  margin-bottom: 10px;
  align-self: flex-start;
  /*optional: align left;*/
}

.badge {
  background: #ff8c00;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  max-width: 65px;
}

@media (max-width:768px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

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

#feature-tabs .nav-link {
  background: #fff;
  color: #000;
  border: 2px solid transparent;
  margin-bottom: 8px;
  text-align: left;
  font-size: 17px;
  border-radius: 0;
}

#feature-tabs .nav-link.active {
  background: #0fd46c;
  color: #fff;
  border: 2px solid #0fd46c;
}

.icon svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  fill: #0d6efd;
}

.industry-section {
  max-width: 1100px;
  margin: 3rem auto 6rem;
  padding: 0 1rem;
  color: #222;
  position: relative;
}

.industry-carousel-wrapper {
  overflow: hidden;
}

.industry-grid {
  display: flex;
  gap: 2em;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 2em 0;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease,box-shadow 0.3s ease;
  -webkit-box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
}

.industry-card:hover {
  box-shadow: 0 8px 24px rgb(0 0 0/0.15);
}

@media (max-width:768px) {
  .industry-card {
    flex: 0 0 100%;
  }
}

.industry-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 1px 3px rgb(0 0 0/0.1));
}

.industry-title {
  font-weight: 700;
  font-size: 1.45rem;
  color: #333;
  margin: 0;
}

.industry-desc {
  font-size: 1rem;
  color: #333;
  flex-grow: 1;
  margin-bottom: 0;
}

.learn-more {
  align-self: flex-start;
  text-decoration: none;
  color: #0fd46c;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.learn-more::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.learn-more:hover, .learn-more:focus {
  color: #0a9a4b;
}

.learn-more:hover::after, .learn-more:focus::after {
  transform: translateY(-50%)translateX(4px);
}

.nav-container {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 1rem;
  display: flex;
  gap: 1rem;
  user-select: none;
}

.nav-arrow {
  background: #0fd46c;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease,transform 0.2s ease;
  box-shadow: 0 2px 6px rgb(15 212 108/0.5);
}

.nav-arrow:hover:not(:disabled) {
  background-color: #0a9a4b;
  transform: scale(1.1);
}

.nav-arrow svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.btn-green-theme {
  display: inline-block;
  padding: 6px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #0fd46c;
  border: 2px solid #0fd46c;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-green-theme:hover {
  background-color: #fff;
  color: #0fd46c;
  transform: scale(1.01);
  box-shadow: 0 6px 18px rgb(0 0 0 / .15);
}

.call-green-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #0fd46c;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 8px;
}

.call-green-link svg {
  width: 20px;
  height: 20px;
  fill: #0fd46c;
  transition: all 0.3s ease;
}

.card-title {
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

/* Main unique div styling */

/* Main unique div styling */

.feature-card-1 {
  background-color: #0d333f;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 20.625rem;
}

.feature-card-1:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.industry-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.industry-card {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 1rem;
}

@media (max-width: 768px) {
  .industry-card {
    flex: 0 0 100%;
  }
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
  color: #222;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: clamp(1.45rem, 1vw + 0.5rem, 1.125rem);
  color: #555;
  margin: 0 auto;
  max-width: 800px;
}

/* Pricing Section Wrapper */

.unique-pricing-section {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

/* Container */

.unique-pricing-container {
  max-width: 1100px;
  width: 100%;
}

/* Card */

.unique-pricing-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  padding: 3rem 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  -webkit-box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
}

/* Columns */

.unique-pricing-left, .unique-pricing-middle, .unique-pricing-right {
  flex: 1;
  min-width: 250px;
}

/* Left Section */

.unique-pricing-left h3 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.unique-pricing-left .starting {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  margin: 0.5rem 0 0;
}

.unique-pricing-left .price {
  font-size: 2rem;
  font-weight: 700;
  color: #2631d1;
  margin: 0.25rem 0;
}

.unique-pricing-left .price span {
  font-size: 2.5rem;
  color: #000;
}

.unique-pricing-left .note {
  font-size: 0.85rem;
  color: #777;
  margin: 0.5rem 0 1rem;
}

.unique-pricing-left .btn {
  font-size: 14px;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  cursor: pointer;
}

.unique-pricing-left .btn:hover {
  background-color: #fff;
  color: #34bf49;
  border: 2px solid #34bf49;
}

/* Lists */

.unique-pricing-middle ul, .unique-pricing-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-pricing-middle li, .unique-pricing-right li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Checkmark Icon */

.unique-pricing-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 992px) {
  .unique-pricing-card {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Responsive */

.feature-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1em;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse .feature-content {
  direction: ltr;
}

.feature-content h3:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #28a745;
  left: 0;
  bottom: 0;
  position: absolute;
}

.feature-content h3 {
  letter-spacing: -0.03em;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.feature-content ul {
  list-style-type: disc;
  padding-left: 0px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-block, .feature-block.reverse {
    direction: ltr;
  }
}

.text-block {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .text-block {
    max-width: 75%;
  }
}

.text-block p {
  line-height: 1.6;
}

.resp-text-wrapper {
  text-align: left;
  margin-bottom: .5rem;
}

.resp-text-wrapper p {
  font-size: .9rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .resp-text-wrapper p {
    font-size: .9rem;
  }
}

/* Section */

.qb-carousel__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 75%;
  margin: 0 auto;
}

/* Tabs & Headings */

.qb-carousel__tabs {
  flex: 0 0 45%;
}

.qb-carousel__tab {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.qb-carousel__tab h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #6c757d;
}

.qb-carousel__tab.active h3 {
  color: #000;
}

.qb-carousel__text {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0.5rem;
  color: #333;
  max-width: 90%;
}

.qb-carousel__text.active {
  display: block;
}

/* Right Side: Images */

.qb-carousel__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-carousel__image {
  display: none;
}

.qb-carousel__image.active {
  display: block;
}

.qb-carousel__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */

@media (min-width: 768px) {
  .qb-carousel__container {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .qb-carousel__container {
    max-width: 100%;
  }
}

.box-shadow {
  -webkit-box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
  box-shadow: 0 0 40px 0 rgba(38, 49, 209, .2);
}

/* Container grid */

/* Individual card */

/* Icon container */

/* ------------------ HERO BUTTON ------------------ */

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  background: #28a745;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .32s ease, box-shadow .32s ease, background-color .22s ease, color .22s ease;
  box-shadow: 0 8px 30px rgba(40,167,69,.18);
  position: relative;
  overflow: hidden;
}

/* accessible keyboard focus */

.hero-btn:hover {
  box-shadow: 0 18px 44px rgba(40,167,69,.22);
  color: #28a745;
  background: #fff;
  border: solid;
}

/* inverted (white bg, green text) */

.hero-btn--invert {
  background: #fff;
  color: #28a745;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.hero-btn--invert:hover {
  background: #28a745;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}

/* click feedback */

.hero-btn:active {
  transform: translateY(0) scale(.995);
}

/* small icon helper (optional) */

/* ------------------ BOTTOM CTA BUTTON ------------------ */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.4rem;
  border-radius: 14px;
  background: #28a745;
  color: #fff;
  border: 2px solid #28a745;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background-color .18s ease, color .18s ease;
  box-shadow: 0 6px 20px rgba(40,167,69,.14);
  position: relative;
}

.cta-btn:hover {
  box-shadow: 0 14px 34px rgba(40,167,69,.18);
  color: #28a745;
  background: #fff;
  border: 2px solid #28a745;
}

.cta-btn--invert {
  background: #fff;
  color: #28a745;
  border-color: #28a745;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.cta-btn--invert:hover {
  background: #2d465e;
  color: #fff;
  box-shadow: 0 12px 34px rgba(40,167,69,.18);
}

.feature-list li {
  line-height: 1.6;
}

.feature-list svg {
  min-width: 24px;
}

.feature-content h3 {
  line-height: 1.4;
}

.feature-list li svg {
  position: relative;
  top: 5px;
}

.feature-image.circle-image {
  width: 525px;
  height: 525px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.feature-image.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Adjust size for screens below MD (e.g., <768px) */

@media (max-width: 767px) {
  .feature-image.circle-image {
    width: 300px;
    height: 300px;
  }
}

.state-buttons {
  margin-top: 1rem;
}

.state-btn {
  border: 2px solid #0fd46c;
  background-color: transparent;
  color: #0fd46c;
  padding: .75em 1.5em;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.state-btn:hover {
  background-color: #0fd46c;
  color: #000000;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .state-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .state-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
  }
}

/* --- TechBrot Core Values Grid Styles --- */

.feature-box {
  background-color: rgba(255,255,255,0);
  padding: 1.1rem;
  border-radius: .5rem;
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
  box-shadow: 0 8px 22px rgba(2,6,23,0.08);
}

.feature-box i {
  font-size: 2.2rem;
  color: #28a745;
  line-height: 1;
}

.feature-box h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}

.feature-box p {
  margin: 0;
  color: #444;
  font-size: .93rem;
  line-height: 1.45;
}

@media (max-width: 575.98px) {
  .feature-box {
    padding: .9rem;
  }
}

@media (max-width: 575.98px) {
  .feature-box i {
    font-size: 1.9rem;
  }
}

@media (max-width: 575.98px) {
  .feature-box h4 {
    font-size: .98rem;
  }
}

@media (max-width: 575.98px) {
  .feature-box p {
    font-size: .88rem;
  }
}

/* Scoped styles for founder section */

/* Scoped styles for this section */

/* allow wrapping */

/* CTA dark button */

.cta-dark {
  background: #0f1720;
  border-color: rgba(255,255,255,0.05);
  color: #fff;
  padding: .55rem 1rem;
  font-weight: 600;
  border-radius: .45rem;
  box-shadow: 0 6px 18px rgba(15,23,32,0.18);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-dark:hover, .cta-dark:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15,23,32,0.22);
  background: #11161a;
  color: #fff;
  outline: none;
}

.cta-dark:active {
  transform: translateY(-1px);
}

/* Responsive tweaks */

@media (max-width: 575.98px) {
  .cta-dark {
    width: 100%;
    text-align: center;
    padding: .7rem;
  }
}

/* Ensure equal height look if text is longer */

@media (min-width: 768px) {
  .col-md-6 .p-3 {
    height: 100%;
  }
}

/* Only for this section */

/* accent for headings/buttons */

/* Use Bootstrap grid by default, but force 70/30 at large screens */

/* Right column styling: dark background + white font */

/* simple check mark circle */

/* Left column typography */

/* Make sure text remains readable on small screens */

.qb-check {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%2328a745' viewBox='0 0 24 24'><path d='M20.285 6.709l-11.49 11.49-5.657-5.657 1.414-1.414 4.243 4.243 10.076-10.076z'></path></svg>");
}

.img-circle-responsive {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 3px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.section-title {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

