:root {
  --ft-navy: #171436;
  --ft-blue: #4e6ffd;
  --ft-blue-dark: #3450e0;
  --ft-blue-light: #8aa4ff;
  --ft-blue-soft: #eef2ff;
  --ft-bg-soft: #f6f7fc;
  --ft-white: #ffffff;
  --ft-muted: #6a6d85;
  --ft-border: #e9eaf5;
  --ft-radius: 22px;
  --ft-shadow: 0 22px 55px -24px rgba(23, 20, 54, 0.18);
}

.ft-page {
  overflow-x: hidden;
  background: #fff;
}
.ft-section-head {
  max-width: 720px;
  margin: 0 auto 50px;
}
.ft-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ft-blue);
  background: var(--ft-blue-soft);
  padding: 7px 16px;
  border-radius: 30px;
}
.ft-section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  margin: 18px 0 12px;
}
.ft-section-head p {
  color: var(--ft-muted);
  font-size: 16.5px;
  margin: 0;
}

.ft-hero {
  position: relative;
  background: var(--ft-bg-soft);
  padding: 162px 0 80px;
  overflow: hidden;
}
.ft-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
}
.ft-hero-blob.a {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(78, 111, 253, 0.28),
    transparent 70%
  );
  top: -140px;
  right: -60px;
}
.ft-hero-blob.b {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.2), transparent 70%);
  bottom: -120px;
  left: -80px;
}

.ft-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.ft-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ft-muted);
  margin-bottom: 22px;
}
.ft-crumb a {
  color: var(--ft-navy);
  text-decoration: none;
  font-weight: 600;
}
.ft-crumb a:hover {
  color: var(--ft-blue);
}
.ft-crumb i {
  font-size: 10px;
  opacity: 0.6;
}
.ft-crumb span {
  color: var(--ft-blue);
  font-weight: 700;
}
.ft-hero-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ft-blue);
  background: #fff;
  border: 1px solid var(--ft-border);
  box-shadow: 0 8px 20px -12px rgba(23, 20, 54, 0.15);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.ft-hero h1 {
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.12;
  margin-bottom: 18px;
}
.ft-hero h1 span {
  color: var(--ft-blue);
}
.ft-hero p {
  color: var(--ft-muted);
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 0;
}

.ft-highlights {
  padding: 25px 0 30px;
  background: #fff;
}

.ft-tab-slider {
  position: relative;
}

/* --- tab pills row --- */
.ft-tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.ft-tab-btn {
  --accent: #4e6ffd;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--ft-border);
  background: #fff;
  color: var(--ft-muted);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px -12px rgba(23, 20, 54, 0.12);
}
.ft-tab-btn i {
  font-size: 13px;
  color: var(--accent);
  transition: 0.3s ease;
}
.ft-tab-btn:hover {
  border-color: var(--accent);
  color: var(--ft-navy);
  transform: translateY(-1px);
}
.ft-tab-btn.is-active {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 26px -10px var(--accent);
}
.ft-tab-btn.is-active i {
  color: #fff;
}

/* --- stage / panels --- */
.ft-slider-stage {
  position: relative;
  background: var(--ft-bg-soft);
  border: 1px solid var(--ft-border);
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--ft-shadow);
}
.ft-tab-panels {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 26px;
}
.ft-panel {
  --accent: #4e6ffd;
  display: none;
  padding: 48px;
  grid-template-columns: 1fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.ft-panel.is-active {
  display: grid;
  animation: ftFadeSlide 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes ftFadeSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ft-panel-index {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  background: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 6px 14px -10px rgba(23, 20, 54, 0.15);
}
.ft-panel h3 {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 14px;
}
.ft-panel p {
  color: var(--ft-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 520px;
}

.ft-panel-media {
  position: relative;
}
.ft-media-glow {
  position: absolute;
  inset: -24px;
  z-index: 0;
  background: radial-gradient(
    circle at 60% 35%,
    var(--accent),
    transparent 65%
  );
  opacity: 0.22;
  border-radius: 32px;
  filter: blur(6px);
}
.ft-panel-media-frame {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 30px 60px -24px rgba(23, 20, 54, 0.28);
  border: 1px solid var(--ft-border);
}
.ft-panel-media-frame img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3.1;
}
.ft-panel-badge {
  position: absolute;
  z-index: 2;
  left: -14px;
  bottom: -16px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px -14px var(--accent);
  display: flex;
  align-items: center;
  gap: 9px;
}
.ft-panel-badge i {
  font-size: 15px;
}

/* --- progress + dots --- */
.ft-progress-track {
  height: 3px;
  background: var(--ft-border);
  margin: 22px 8px 0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.ft-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ft-blue), var(--ft-blue-light));
}
.ft-progress-fill.animate {
  animation: ftProgress 6s linear forwards;
}
@keyframes ftProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.ft-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 6px;
}
.ft-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d9dcf2;
  cursor: pointer;
  transition: 0.3s;
}
.ft-dots button.is-active {
  width: 26px;
  border-radius: 6px;
  background: var(--ft-blue);
}

.ft-more-cta {
  text-align: center;
  margin-top: 46px;
}

/* =========================================================
   3. BUTTONS
========================================================= */
.ft-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ft-navy);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}
.ft-btn-primary:hover {
  background: var(--ft-blue);
  color: #fff;
  transform: translateY(-2px);
}
.ft-btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ft-blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 16px 30px -14px var(--ft-blue);
}
.ft-btn-blue:hover {
  transform: translateY(-2px);
  background: var(--ft-blue-dark);
}
.ft-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ft-navy);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 40px;
  text-decoration: none;
  border: 1.5px solid var(--ft-border);
  transition: 0.3s ease;
}
.ft-btn-outline:hover {
  border-color: var(--ft-blue);
  color: var(--ft-blue);
}

/* =========================================================
   4. MORE FEATURES — CATEGORY TABS (white cards)
========================================================= */
.ft-more {
  padding: 25px 0 30px;
  background: var(--ft-bg-soft);
  position: relative;
}

.ft-mf-wrap {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
}
.ft-mf-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--ft-border);
  border-radius: 22px;
  padding: 14px;
  overflow-y: auto;
  box-shadow: var(--ft-shadow);
}

.ft-mf-nav::-webkit-scrollbar {
  width: 5px;
}

.ft-mf-nav::-webkit-scrollbar-thumb {
  background: var(--ft-border);
  border-radius: 6px;
}

.ft-mf-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--ft-muted);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.ft-mf-btn img {
  width: 31px;
  text-align: center;
  transition: filter 0.25s ease; 
}

.ft-mf-btn:hover {
  background: var(--ft-blue);
  color: #fff;
}

.ft-mf-btn:hover img {
  filter: brightness(0) invert(1);
}

.ft-mf-btn.is-active {
  background: var(--ft-blue);
  color: #fff;
}

.ft-mf-btn.is-active img {
  filter: brightness(0) invert(1);
}
.ft-mf-panels {
  background: #fff;
  border: 1px solid var(--ft-border);
  border-radius: 22px;
  padding: 38px 42px;
  min-height: 420px;
  box-shadow: var(--ft-shadow);
}
.ft-mf-panel {
  display: none;
}
.ft-mf-panel.is-active {
  display: block;
  animation: ftFadeSlide 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.ft-mf-panel h4 {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ft-mf-panel h4 i {
  color: var(--ft-blue);
  font-size: 19px;
}
.ft-mf-panel .ft-mf-sub {
  color: var(--ft-muted);
  font-size: 14.5px;
  margin-bottom: 26px;
}

.ft-check-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
  margin-top: 5%;

}
.ft-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3c3f57;
  font-size: 14.5px;
  line-height: 1.5;
}
.ft-check-grid li i {
  color: var(--ft-blue);
  background: var(--ft-blue-soft);
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  margin-top: 2px;
}

/* =========================================================
   5. CLOSING CTA (light card with photo)
========================================================= */
.ft-cta {
  padding: 100px 0 110px;
  background: #fff;
}
.ft-cta-card {
  background: var(--ft-blue-soft);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ft-cta-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(78, 111, 253, 0.18),
    transparent 70%
  );
  right: -100px;
  top: -140px;
}
.ft-cta-text {
  position: relative;
  z-index: 2;
}
.ft-cta-text h2 {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
}
.ft-cta-text p {
  color: var(--ft-muted);
  max-width: 460px;
  margin-bottom: 30px;
}
.ft-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ft-cta-media {
  position: relative;
  z-index: 2;
}
.ft-cta-media img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 30px 55px -22px rgba(23, 20, 54, 0.32);
}

/* =========================================================
   6. RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .ft-hero {
    padding: 130px 0 70px;
  }
  .ft-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 22px;
  }
  .ft-panel p {
    margin-inline: auto;
  }
  .ft-panel-media {
    max-width: 420px;
    margin: 0 auto;
  }
  .ft-panel-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
  }
  .ft-mf-wrap {
    grid-template-columns: 1fr;
  }
  .ft-mf-nav {
    flex-direction: row;
    flex-wrap: wrap;
    max-height: none;
  }
  .ft-mf-panels {
    padding: 30px 22px;
  }
  .ft-cta-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }
  .ft-cta-actions {
    justify-content: center;
  }
  .ft-cta-media {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .ft-check-grid {
    grid-template-columns: 1fr;
  }
  .ft-tab-btn span {
    display: none;
  }
  .ft-tab-btn {
    padding: 12px 14px;
  }
  .ft-panel {
    padding: 26px 16px;
  }
}

/* Color & Background setup */
:root {
  --ft-dark-bg: #0b1120;
  --ft-blue: #4e6ffd;
  --ft-blue-soft: rgba(78, 111, 253, 0.15);
  --ft-text-light: #ffffff;
  --ft-muted-light: #94a3b8;
}

.ft-hero {
  position: relative;
  background: linear-gradient(135deg, #090e24 0%, #0f172a 100%);
  padding: 162px 0 80px;
  overflow: hidden;
  color: var(--ft-text-light);
}

/* Background Dark Grid Lines */
.ft-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 45px 45px;
  z-index: 1;
}

/* Glow Blobs Background */
.ft-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: 1;
}
.ft-hero-blob.a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(78, 111, 253, 0.6), transparent 70%);
  top: -100px;
  right: -50px;
}
.ft-hero-blob.b {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.5), transparent 70%);
  bottom: -100px;
  left: -80px;
}

/* Hero Section Layout Grid */
.ft-hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.ft-hero-inner {
  max-width: 620px;
}

/* Pill Breadcrumb (from Image 2) */
.ft-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.ft-crumb a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ft-crumb a:hover {
  color: #fff;
}
.ft-crumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}
.ft-crumb span {
  color: #ffffff;
  font-weight: 700;
}

/* Badge */
.ft-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

/* Heading & Paragraph */
.ft-hero h1 {
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}
.ft-hero h1 span {
  color: #5882ff;
}
.ft-hero p {
  color: var(--ft-muted-light);
  font-size: 17px;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 0;
}

.ft-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  animation: floatAnimation 4s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.visual-container:hover {
  transform: scale(1.03) translateY(-8px);
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .ft-hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ft-hero p {
    margin: 0 auto;
  }
  .ft-hero-visual {
    margin-top: 30px;
  }
}
.section-title {
  font-size: 22px;
}
.sub-title {
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  padding-left: 25px;
  font-size: 29px;
  line-height: 1.2;
  color: var(--color-heading);
}

.bb-banner-section {
  padding: 40px 0px 0px;
  background: #f4f7fe;
  width: 100%;
}

.bb-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* responsive 3-column layout */
.bb-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 2fr); /* 3 box in a row */
  gap: 24px;
}

/* Static Card Styling */
.bb-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.bb-card-preview {
  border-radius: 10px;
  overflow: hidden;
  height: 115px;
  background: #f1f5f9;
}

.bb-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-card-body {
  padding-top: 14px;
}

.bb-feat-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
}

.bb-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 6px 0;
}

.bb-card-body p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .bb-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bb-cards-grid {
    grid-template-columns: 1fr;
  }
}

.ft-panel-img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.ft-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ft-panel-header {
    text-align: center;
    margin-bottom: 24px;
}

.ft-panel-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ft-panel-header h4 img {
      width: 50px;
}

.ft-mf-sub {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.ft-check-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-top: 8%;
}

.ft-check-grid li {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ft-check-grid li i {
    color: #2563eb;
    background: #eff6ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Responsive Layout */
@media (max-width: 600px) {
    .ft-check-grid {
        grid-template-columns: 1fr;
    }
    
    .ft-panel-img {
        height: 180px;
    }
}