/* ============ RESET / BASE ============ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --blue-100: #c4d8ff;
  --blue-200: #deeaf9;
  --blue-900: #000e58;
  --neon-blue: #0f07a1;
  --neon-green: #09E1AC;
  --indigo-700: #0f07a1;
  --jet-black: #353847;
  --text-main: #1e1e1e;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #e5e5e5;
  --gray-600: #737373;
  --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --small-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1); 
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-fast: 0.2s ease;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background-color: #ffffff;
}

.page {
  width: 100%;
}

/* ============ LAYOUT HELPERS ============ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  width: 100%;
  padding: 4rem 0;
}

.section--white {
  background-color: #ffffff;
}

.section--light {
  background-color: var(--blue-200);
}
.header-cta .btn-primary{
  background-color: var(--neon-green);
}
.header-cta .btn-primary:hover {
  background-color: var(--neon-green);
  box-shadow: 0 8px 20px rgba(9, 225, 172, 0.2);
  transform: translateY(-1px);
}
.small{
  font-size: 0.9rem;
  color: #d1ceff;
}
.section--how {
 background-image: url('../img/How-it-works-image.jpg');
 background-position: center;
 background-size: cover;
}
.set-max{
    max-width: 100%;
}
.section--security {
  position: relative;
  padding: 4rem 0;
  background-color: var(--blue-200);
}

.section--testimonial {
  background-color: #ffffff;
}

/* ============ HEADER ============ */

.site-header {
  width: 100%;
  background-color: var(--blue-900);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}

.site-header.is-sticky {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* ================= LOGO ================= */

.logo-mark img {
  max-height: 36px;
  width: auto;
  display: block;
}

/* ================= DESKTOP NAV ================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
}

/* ================= HEADER ACTIONS ================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ================= CTA BUTTON ================= */

.header-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ================= HAMBURGER ================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ================= MOBILE MENU ================= */

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--blue-900);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  opacity: 0.9;
}

.mobile-nav a:hover {
  opacity: 1;
}

/* Open state */
.site-header.menu-open .mobile-nav {
  display: flex;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  .btn{
    padding: 0.5rem 1.3rem!important;
     font-size: 0.9rem!important;
  }
  /* Show hamburger */
  .menu-toggle {
    display: flex;
  }
  .cost-head{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  /* Reduce header height slightly */
  .header-inner {
    min-height: 72px;
  }

  /* CTA spacing */
  .header-actions {
    gap: 0.75rem;
    margin-left: 10px;
  }
}

/* ============ BUTTONS & INPUTS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background-color: var(--neon-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #110ac4;
  box-shadow: 0 8px 20px rgba(15, 7, 161, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
}

.btn-outline:hover {
  background-color: var(--neon-blue);
  color: #ffffff;
}

.btn-block {
  width: 100%;
}

.input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--gray-300);
  font-size: 0.95rem;
  margin: 5px 0px;
}
textarea{
  margin: 5px 0px;
}
.testimonial-aside .btn-primary{
  margin-top: 10px;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  width: 100%;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/Hero-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-inner {
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  padding: 3.5rem 0;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 2.7rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #e8f2fb;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ============ SECTIONS HEADERS ============ */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header--left {
  text-align: center;
}

.section-header--wide {
  max-width: 1040px;
  margin: 0 auto 2.5rem;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 2.1rem;
  line-height: 1.2;
  color: var(--blue-900);
  margin: 0;
}
.section--security .section-subtitle{
  font-size: 1.4rem;
  max-width: 60%;
}
.section--security .section-header  p{
   max-width: 100%;
}
.section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-top: 0.75rem;
  color: var(--blue-900);
}
.big-type{
  font-size: 1.1rem;
  color: var(--indigo-700);
}

/* ============ GRID ============ */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.b-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.b-list li{
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--text-main);
  font-weight: 600;
}
.b-list li i{
  color: var(--indigo-700);
  margin-right: 10px;
  margin-top: 4px;
}
.cmt{
  margin-top: 30px!important;
}
/* ============ CARDS ============ */

.card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.card-no-shadow {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.9rem;
 
}
.card-no-shadow:hover .card--indigo-img img{
  transform: scale(1.02);
}
#meet-credi8 .card-title{
  color: var(--indigo-700);
}
#meet-credi8 .card-no-shadow{
  margin-bottom: 30px;
}
.ft-text{
  font-size: 0.8rem;
}
.card--blue {
  background-color: var(--blue-200);
  box-shadow: var(--small-shadow);
}
.icon img{
  transition: all 0.3s ease-in-out;
}
.card--blue:hover .icon img{
  transform: scale(1.1);
}
.card--indigo {
  background-color: #f8faff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card--indigo-img{
  width: 400px;
  max-width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card--indigo-img img{
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.card-left{
  margin-right: 15px;
}
.card--security {
  background-color: transparent;
}
.section--security .card{
  padding: 0.5rem;
  box-shadow: none;
  border-radius: none;
}
.card--demo {
  background-color: var(--blue-100);
}

.card-title {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  margin: 0 0 1rem;
  line-height: 1.6rem;
}
.sub-head{
  font-size: 1.1rem;
  margin-top: 1rem;
}
.card-text {
  font-size: 1rem;
  margin: 0 0 0.9rem;
  color: var(--jet-black);
}

.card-text--muted {
  color: #e8f2fb;
}

.card-emphasis {
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ============ CTA BANDS ============ */

.cta-band {
  width: 100%;
  padding: 3rem 0;
}

.cta-band--dark {
  background-color: var(--blue-900);
}

.cta-band--very-dark {
  background-color: var(--blue-900);
}

.cta-band-text {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.35;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

/* ================= CREDI8 HOW WORKS ================= */

.credi8-how__header {
  max-width: 720px;
  margin-bottom: 3rem;
}

/* Layout */
.credi8-how__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Timeline */
.credi8-how__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 1.5rem;
}

.credi8-how__line {
  position: absolute;
  left: 57px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-200);
}

/* Step button */
.credi8-how__step {
 display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 999px; 
  transition: background-color 0.35s ease;
}

.credi8-how__dot {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue-900);
  background: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.credi8-how__label {
  font-weight: 600;
  color: var(--text-main);
  max-width: 260px;
  transition: color 0.3s ease;
  font-size: 1rem;
}

/* Active step */
.credi8-how__step.is-active .credi8-how__dot {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  color: #fff;
  transform: scale(1.1);
}
.credi8-how__step.is-active{
  background-color: rgba(15, 7, 161, 0.08);
}

.credi8-how__step.is-active .credi8-how__label {
  color: var(--neon-blue);
}

/* Content panels */
.credi8-how__content {
  position: relative;
}

.credi8-how__panel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.credi8-how__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.credi8-how__title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.credi8-how__footer {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--neon-blue);
}

/* Mobile */
@media (max-width: 768px) {
  .credi8-how__layout {
    grid-template-columns: 1fr;
    gap: 0.3rem!important;
  }
  .credi8-how__content {
    position: static;
    min-height: auto;
  }

  /* Panels must NOT overlap on mobile */
  .credi8-how__panel {
    position: static;
    inset: auto;
    opacity: 1;
    transform: none;
    display: none;          /* hide all by default */
    pointer-events: auto;
  }

  /* Only active panel shows */
  .credi8-how__panel.is-active {
    display: block;
  }

  /* Timeline line hidden */
  .credi8-how__line {
    display: none;
  }
  .credi8-how__timeline {
    padding-left: 0;
  }
  

}







.ui-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
}

.ui-card--plan .ui-card-header {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.ui-pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background-color: var(--blue-100);
  font-size: 0.8rem;
}

.ui-pill--muted {
  background-color: #f3f4ff;
  color: #4b5563;
}

.ui-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ui-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 0.4rem;
}

.ui-row:last-child {
  border-bottom: none;
}

.ui-label {
  color: #4b5563;
}

.ui-value {
  font-weight: 500;
  color: #111827;
}

.ui-small-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ui-small-cards--inline {
  flex-wrap: wrap;
}

.ui-stat {
  min-width: 180px;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ui-stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.ui-stat-value {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3730a3;
}

.ui-card--table {
  padding: 1.25rem 1.5rem;
}

.ui-table-header,
.ui-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 0.75rem;
  font-size: 0.9rem;
  align-items: center;
}

.ui-table-header {
  font-weight: 600;
  color: #4b5563;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

.ui-table-row + .ui-table-row {
  border-top: 1px dashed #e5e7eb;
  padding-top: 0.45rem;
  margin-top: 0.45rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.badge--success {
  background-color: #e6f6ef;
  color: #218358;
}

.badge--warning {
  background-color: #fff4e6;
  color: #b45309;
}

.ui-card--import .ui-card-title {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.ui-card--import .ui-card-copy {
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.ui-card--chart {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ui-chart-bars {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 160px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem;
}

.bar {
  width: 10px;
  border-radius: 999px;
  background-color: var(--gray-600);
  height: 40px;
}

.bar--short {
  height: 30px;
}

.bar--mid {
  height: 55px;
}

.bar--tall {
  height: 80px;
}

/* ============ SECURITY ============ */


.security-inner-left{
  width: 100%;
  text-align: center;
}
.security-inner-right{
  width: 75%;
  max-width: 100%;
  
}
.security-imgbx{
  text-align: center;
}
.security-imgbx img{
  width:600px;
  max-width:100%;
  margin: 0 auto;
}
.security-inner {
  display: flex;
  align-items:center;
  justify-content: center;
  flex-direction: column;
}

.security-grid {
  margin-top:10px;
  max-width: 100%;
}
.card--security:hover .security-icon img{
  transform: translateY(-4px);
}
.section--security .section-title{
  max-width: 100%;
}
.security-icon {
  width: 128px;
  height: 128px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.security-icon img {
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.card--security .card-title{
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: #000E58;
   text-align: center!important;
}
.card--security .card-text{
  text-align: center!important;
}

/* ============ TESTIMONIAL & DEMO ============ */

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.8fr);
  gap: 6rem;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  border-radius: var(--radius-xl);
  border: 1px solid #c4d8ff;
  padding: 2rem 0rem 0rem 2rem;
  background-color: var(--blue-100);
  box-shadow: var(--card-shadow);
  position: relative;
}
.qt-im{
  width: 60px;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 0;
  opacity: 0.15;
}
.qt-im img{
  width: 100%;
}
.testimonial-card h2{
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.testimonial-quote {
  margin-right: 2rem;
  font-size: 1.05rem;
  color: var(--indigo-700);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}
.testimonial-card .h-text{
  margin-bottom: 0px;
}
.testimonial-author {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--jet-black);
}

.testimonial-aside .card--demo {
  height: 100%;
  background-color: transparent;
  box-shadow: none;
}
.card--demo h3{
  color:var(--indigo-700)  
}
.testimonial-aside textarea{
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--gray-300);
  font-size: 0.95rem;
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.test-ftr{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ============ FINAL CTA SECTION ============ */

.final-cta {
  position: relative;
  padding: 4rem 0;
  color: #ffffff;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://placehold.co/2176x800");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.final-cta-inner {
  max-width: 640px;
  padding: 3rem 0;
}

.final-cta-title {
   font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.final-cta-text {
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  color: #e8f2fb;
}

/* ============ FOOTER ============ */

.site-footer {
  background-color: var(--blue-900);
  color: #deeaf9;
  padding: 2rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.footer-logo-and-copy {
  max-width: 320px;
}

.footer-text {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-link {
  color: #deeaf9;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 10px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  margin: 0;
}
#pain-points .section-title{
  text-align: center;
}
.card--blue .card-title{
  color: var(--indigo-700);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 800px){
    .sing-row{
    flex-direction: column;
  }
  #book-demo .card{
    padding: 0rem;
  }
}
@media (max-width: 1024px) {

  #pain-points .section-title{
  max-width: 100%;
}
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
 

  .how-step,
  .how-step--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .how-step--reverse .how-text {
    order: 0;
  }

  .how-step--reverse .how-visual {
    order: 1;
  }

  .testimonial-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .footer-top {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .logo-mark img{
    max-width: 130px;
  }
  .section--security .section-title{
    max-width: 100%;
  }
  .test-ftr{
    flex-direction: column;
  }
  .hero-inner {
    min-height: 360px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .how-step,
  .how-step--reverse {
    padding: 1.8rem 0;
  }

  .testimonial-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-inner {
    padding: 2.5rem 0;
  }

  .final-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ui-table-header,
  .ui-table-row {
    grid-template-columns: 2fr 1fr;
  }

  .ui-table-header span:nth-child(3),
  .ui-table-header span:nth-child(4),
  .ui-table-row span:nth-child(3),
  .ui-table-row span:nth-child(4) {
    display: none;
  }

  .ui-small-cards {
    flex-direction: column;
  }
}
.sing-row{
  display: flex;
  gap: 1rem;
}
.sing-row-inner-wr{
  width: 100%;
}

.sing-row-inner-wr label{
   color: #4b5563;
   padding: 10px ;
}
.sing-row-inner-wr input{
  margin-top: 5px;
}
#response{
  margin: 10px 0px;
  color: #0f07a1;
}
.feat-wr-bx{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.feat-innerbx{
  width:18%;
  height: 100%; 
}
.feat-iconbx{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #eef6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
.feat-iconbx img{
  width: 100%;
}
@media (max-width: 768px) {
  .feat-wr-bx{
    flex-direction: column;
  }
  .feat-innerbx{
    width: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #e5e5e5;
  }
    .feat-innerbx:last-child{
      border-bottom: none;
    }
}
.feat-text-more {
  display: none;
}

.read-toggle {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  color: #4a6cf7; /* calm brand blue */
  cursor: pointer;
  text-decoration: none;
}

.read-toggle:hover {
  text-decoration: underline;
}
.feat-innerbx h3{
  color: var(--blue-900);
  line-height: 1.3;
}
@media (min-width: 769px) and (max-width: 1000px) {
  .feat-innerbx{
    width: 45%!important;
    margin-bottom: 20px;
  }
  .feat-wr-bx{
    flex-wrap: wrap;
  }
}
.book-now-fixed {
  position: fixed;
  right: -59px;              
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 900;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--small-shadow);
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.book-now-fixed:hover {
  transform: translateY(-50%) rotate(-90deg) translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 7, 161, 0.35);
}


@media (max-width: 768px) {
  .book-now-fixed {
    right: 10px;
    bottom: 20px;
    top: auto;

    transform: none;
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }
  .card--indigo-img {
    width:100%;
    max-width: 100%;
    height: auto;
  }
}
.demo-title{
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  margin: 0 0 1rem;
  line-height: 1.6rem;
  color: var(--blue-900);
}
.b-list{
  list-style: none;
}
.demo-info{ 
  margin-top: 40px;
  padding-top: 30px;
   border-top: 1px solid #e5e5e5;
}
.ft-address p{
  color: #deeaf9;
 font-size: 0.95rem;
 margin-top: 0px;
}
.sing-line a{
   color: #deeaf9;
   text-decoration: none;
}
.sing-line{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
 font-size: 0.95rem;
}
.sing-line i{
  margin-right: 8px;
  margin-top: 5px;
  color: var(--neon-green);
}
.ft-address h6{
  margin-bottom: 0px;
}
.btn-primary i{
  margin-right: 8px;
}
/* ================= COST STACK SECTION ================= */

.section--cost-stack {
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.cost-stack {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
}

/* Progress */
.cost-progress {
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
}

.progress-line {
  width: 2px;
  height: 100%;
  background: #c8d6ff;
  display: block;
}

/* Items */
.cost-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.cost-dot {
  width: 14px;
  height: 14px;
  background: #c8d6ff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  flex-shrink: 0;
}

/* Active */
.cost-item.is-active .cost-dot {
  background: var(--neon-blue);
  transform: scale(1.2);
}

/* Card */
.cost-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 100%;
  transition: all 0.3s ease;
}

.cost-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.cost-head img {
  width: 90px;
}

.cost-head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  color: var(--neon-blue);
}

.cost-sub {
  color: #4b5d87;
  font-size: 0.95rem;
}

/* Body (collapsed by default) */
.cost-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 0;
}

.cost-item.is-active .cost-body {
  max-height: 300px;
  margin-top: 1rem;
}

.cost-body p,
.cost-body li {
  font-size: 0.95rem;
  color: #2b2f42;
}

.cost-body ul {
  padding-left: 1.2rem;
}

.emphasis {
  font-weight: 600;
  color: var(--neon-blue);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .cost-progress {
    left: 6px;
  }

  .cost-item {
    gap: 1.25rem;
  }

  .cost-card {
    padding: 1.4rem;
  }
  #meet-credi8 .card-no-shadow{
    flex-direction: column;
  }
}

/* ================= CREDI8 EXIT INTENT MODAL ================= */

.c8-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 14, 88, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.c8-exit-overlay.is-visible {
  display: flex;
}

/* Modal */
.c8-exit-modal {
  background: #ffffff;
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  overflow: hidden; /* CRITICAL for iframe fix */
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: c8ModalIn 0.35s ease;
}

@keyframes c8ModalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.c8-exit-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid #eef1ff;
}

.c8-exit-title {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  color: var(--blue-900);
}

.c8-exit-sub {
  margin: 0;
  color: #5f6b85;
  font-size: 1rem;
  max-width: 480px;
}

/* Close button */
.c8-exit-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
  z-index: 11;
}

/* Body */
.c8-exit-body {
  padding: 1.5rem 2rem 2.25rem;
  max-height: 80vh;
  overflow-y: auto;
}

/* HubSpot form styling */
#c8-hubspot-form .hs-form {
  margin-top: 1rem;
}

#c8-hubspot-form input,
#c8-hubspot-form select,
#c8-hubspot-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd9ff;
  font-size: 0.95rem;
}

#c8-hubspot-form input[type="submit"] {
  background: var(--neon-blue);
  border: none;
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

/* Prevent iframe overflow */
#c8-hubspot-form iframe {
  max-width: 100% !important;
}

/* Mobile */
@media (max-width: 480px) {
  .c8-exit-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .c8-exit-body {
    padding: 1.25rem 1.5rem 1.75rem;
  }
}

