/* =========================================================
   MATCH HERO
========================================================= */

.match-hero-section {
    background: var(--bg-body);
    font-family: var(--font-main);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.match-container {
    max-width: 1280px;
    width: 100%;
    padding: 30px 50px;
    background: rgba(185, 203, 248, 0.305);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

.match-left {
    flex: 1.1;
    min-width: 0;
}

.match-title {
    margin: 0 0 30px;
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    min-width: 90px;
    height: 48px;
    padding: 2px 16px;
    margin: 0 4px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    color: var(--primary-blue);
    background: var(--primary-blue-soft);
    border: 2px solid #93c5fd;
    border-radius: 40px;
    transform: rotate(-1.5deg);
}

.rotating-text {
    display: inline-block;
    white-space: nowrap;
    opacity: 1;
    transform: translateY(0);
    transition: transform .45s ease, opacity .35s ease;
}

.rotating-text.flip-out {
    transform: translateY(-100%);
    opacity: 0;
}

.match-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.match-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
}

.match-benefits li:last-child {
    margin-bottom: 0;
}

.match-benefits li span {
    color: var(--text-dark);
}

.match-benefits li i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    color: var(--primary-blue);
    background: var(--primary-blue-soft);
    border-radius: 50%;
    font-size: 16px;
}

.btn-primary-blue {
    display: inline-block;
    padding: 14px 28px;
    color: #fff;
    background: var(--primary-blue);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, .25);
    font-weight: 700;
    text-decoration: none;
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn-primary-blue:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, .3);
}

.match-right {
    flex: .9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-illustration {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    will-change: transform;
    animation: heroImageGrow 8s ease-in-out infinite;
}

@keyframes heroImageGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.025); }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .match-container {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .match-title {
        font-size: 32px;
    }

    .match-benefits li {
        justify-content: center;
        text-align: left;
    }

    .match-right {
        width: 100%;
        margin-top: 20px;
    }

    .match-illustration {
        width: 100%;
        max-width: 520px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .match-hero-section {
        padding: 30px 15px;
    }

    .match-container {
        padding: 35px 18px;
        gap: 25px;
        border-radius: 18px;
    }

    .match-title {
        margin-bottom: 25px;
        font-size: 28px;
        line-height: 1.25;
    }

    .highlight-badge {
        min-width: 82px;
        height: 40px;
        padding: 2px 12px;
        border-width: 1.5px;
    }

    .match-benefits li {
        gap: 10px;
        margin-bottom: 14px;
        font-size: 14px;
    }

    .match-benefits li i {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .btn-primary-blue {
        padding: 12px 22px;
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
    .match-title {
        font-size: 25px;
    }

    .highlight-badge {
        min-width: 76px;
        height: 36px;
        padding: 2px 10px;
    }
}























/* =========================================
   LEAD PROBLEM SECTION
   ========================================= */

.lead-problem-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.lead-container {
  width: min(1200px, 100%);
  margin: 0 auto;
}


/* =========================================
   HEADING
   ========================================= */

.lead-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 13px;

  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #413BF7;
  text-transform: uppercase;
}

.lead-heading h2 {
  margin: 0 0 16px;

  color: #090D16;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 750;
  letter-spacing: -1.2px;
}

.lead-heading p {
  max-width: 690px;
  margin: 0 auto;

  color: #6B7280;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}


/* =========================================
   SLIDER AREA
   ========================================= */

.lead-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.lead-slider {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.lead-slider.is-dragging {
  cursor: grabbing;
}

.lead-track {
  display: flex;
  gap: 18px;

  will-change: transform;
  transition: transform 0.45s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================
   CARDS
   ========================================= */

.lead-card {
  flex: 0 0 calc((100% - 54px) / 4);

  min-height: 285px;
  padding: 28px 22px 25px;

  background: #F4F6FB;
  border: 1px solid rgba(65, 59, 247, 0.08);
  border-radius: 16px;

  box-sizing: border-box;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lead-card:hover {
  transform: translateY(-6px);
  border-color: rgba(65, 59, 247, 0.18);

  box-shadow:
    0 14px 35px rgba(9, 13, 22, 0.08);
}


/* =========================================
   ICON
   ========================================= */

.lead-icon {
  width: 54px;
  height: 54px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border-radius: 13px;

  box-shadow: 0 5px 18px rgba(9, 13, 22, 0.05);
}

.lead-icon svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: #ef3340;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================
   CARD CONTENT
   ========================================= */

.lead-card h3 {
  margin: 0 0 12px;

  color: #090D16;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.25px;
}

.lead-card p {
  margin: 0;

  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}


/* =========================================
   SLIDER BUTTONS
   ========================================= */

.slider-btn {
  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(65, 59, 247, 0.15);
  border-radius: 50%;

  background: #ffffff;
  color: #413BF7;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 6px 20px rgba(9, 13, 22, 0.07);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.slider-btn:hover {
  background: #413BF7;
  color: #ffffff;
  transform: scale(1.06);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}


/* =========================================
   BOTTOM MESSAGE
   ========================================= */

.lead-bottom-text {
  max-width: 900px;

  margin: 38px auto 0;
  padding: 18px 22px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  background: #F4F6FB;
  border-radius: 12px;
}

.bottom-dot {
  flex: 0 0 8px;

  width: 8px;
  height: 8px;

  margin-top: 7px;

  border-radius: 50%;
  background: #413BF7;
}

.lead-bottom-text p {
  margin: 0;

  color: #6B7280;
  font-size: 14px;
  line-height: 1.65;
}

.lead-bottom-text strong {
  color: #090D16;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1050px) {

  .lead-problem-section {
    padding: 65px 20px;
  }

  .lead-card {
    flex: 0 0 calc((100% - 36px) / 3);
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

  .lead-problem-section {
    padding: 55px 16px;
  }

  .lead-heading {
    margin-bottom: 32px;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 1.1px;
    margin-bottom: 10px;
  }

  .lead-heading h2 {
    font-size: 30px;
    line-height: 1.17;
    letter-spacing: -0.7px;
    margin-bottom: 13px;
  }

  .lead-heading p {
    font-size: 15px;
    line-height: 1.55;
  }


  /* Hide desktop arrows on mobile */
  .slider-btn {
    display: none;
  }

  .lead-slider {
    margin: 0 -16px;
    padding: 0 16px;
    width: auto;

    overflow-x: hidden;
  }

  .lead-track {
    gap: 14px;
  }

  /*
    Mobile:
    About 1.2 cards visible.
    User can swipe to see remaining cards.
  */
  .lead-card {
    flex: 0 0 82%;

    min-height: 270px;
    padding: 24px 20px;

    border-radius: 15px;
  }

  .lead-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 19px;
  }

  .lead-icon svg {
    width: 25px;
    height: 25px;
  }

  .lead-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .lead-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .lead-bottom-text {
    margin-top: 28px;
    padding: 16px;

    gap: 10px;
  }

  .lead-bottom-text p {
    font-size: 13px;
    line-height: 1.6;
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 420px) {

  .lead-heading h2 {
    font-size: 27px;
  }

  .lead-heading p {
    font-size: 14px;
  }

  .lead-card {
    flex-basis: 86%;
  }

}























/* Color Palette Variables */
:root {
  --brand-blue: #413BF7;
  --brand-hover: #2E27E2;
  --brand-dark: #090D16;
  --brand-muted: #6B7280;
  --brand-bg-light: #F4F6FB;
  --brand-card-bg: #FFFFFF;
  --brand-border: #E5E7EB;
}

/* Base Styles */
.trust-section {
  background-color: #FAFCFF;
  color: var(--brand-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 60px 16px;
}

.trust-container {
  max-width: 1380px;
  margin: 0 auto;
}

/* Header Styles */
.trust-header {
  max-width: 768px;
  margin-bottom: 48px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background-color: rgba(65, 59, 247, 0.1);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.trust-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.trust-title .highlight {
  color: var(--brand-blue);
}

.trust-description {
  font-size: 16px;
  color: var(--brand-muted);
  line-height: 1.6;
}

/* Grid Layout */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: 4fr 8fr;
    gap: 40px;
  }
}

/* Media Card Styling */
.featured-media-card {
  position: relative;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #2D26D6, #413BF7);
  border-top-right-radius: 80px;
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 30px -10px rgba(65, 59, 247, 0.2);
  overflow: hidden;
}

.media-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 12px;
}

.logo-box img {
  height: 28px;
  width: auto;
  display: block;
}

.media-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-center {
  text-align: center;
  margin: auto 0;
}

.play-button-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse-ring 2.5s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.play-btn {
  width: 70px;
  height: 70px;
  background: #ffffff;
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.play-button-wrapper:hover .play-btn {
  transform: scale(1.1);
}

.media-play-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-top: 14px;
}

.media-bottom {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.media-bottom-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

.media-bottom-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Carousel Column */
.carousel-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drag-hint {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-bg-light);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--brand-border);
}

.arrow-buttons {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--brand-border);
  color: var(--brand-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Slider Track & Cards */
.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  user-select: none;
  padding: 12px 4px;
  scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.slider-track.active {
  cursor: grabbing;
  scroll-behavior: auto;
}

.feature-card {
  min-width: 290px;
  max-width: 320px;
  background: var(--brand-card-bg);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--brand-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(65, 59, 247, 0.12);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(65, 59, 247, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.5;
}

.card-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--brand-border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
}

/* Progress Bar */
.progress-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.progress-track {
  flex-grow: 1;
  height: 6px;
  background: var(--brand-border);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--brand-blue);
  width: 12%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-muted);
  min-width: 60px;
  text-align: right;
}

















