/**
 * About Us Page Styles
 * Company information and trust signals
 * Uses CSS variables from global.css
 */

/* ============================================
   Component 1: About Banner
   ============================================ */

.about-banner {
    padding: 134px 70px;
  background: linear-gradient(136.79deg, #FEFEFF 24.22%, #EBF7FF 88.85%);
}

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

.about-banner-content {
  text-align: center;
}

.about-banner-title {
     font-weight: 500;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: 0;
    color: #464860;
    margin-bottom: 20px;
}


.about-banner-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0;
    color: #60738a;
    margin: 0 auto;
    max-width: 700px;
}

.about-banner-description a {
  color: var(--primary-blue);
  font-weight: var(--font-semi);
}

.about-banner-description a:hover {
  color: var(--primary-blue-lighter);
}

.about-banner-badges {
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    gap: 20px;
    margin: 70px auto;
}

.about-banner-cta {
  display: flex;
  justify-content: center;
}

/* ============================================
   Component 2: Writers Anonymity
   ============================================ */

.writers-anonymity {
  padding: 170px 0 120px;
  background: var(--bg-white);
}

.writers-anonymity-wrapper {
  max-width: 1001px;
  margin: 70px auto 0;
}

.writers-anonymity-title {
  font-weight: var(--font-semi);
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.writers-anonymity-intro {
  font-size: var(--text-base);
  line-height: 180%;
  color: var(--text-gray-light);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.anonymity-content {
  background: var(--bg-white);
  border: 1px solid var(--border-lightest);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.anonymity-text {
  margin-bottom: var(--space-lg);
}

.anonymity-heading {
  font-weight: var(--font-semi);
  font-size: var(--text-lg);
  line-height: 160%;
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
}

.anonymity-description {
  font-size: var(--text-normal);
  line-height: 200%;
  color: var(--text-gray-light);
  margin-bottom: var(--space-md);
}

.anonymity-proof {
  margin-bottom: var(--space-lg);
  background: var(--bg-light-blue);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
}

.anonymity-proof-title {
  font-weight: var(--font-semi);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}

.anonymity-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.anonymity-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-arrow {
  color: var(--primary-blue);
  font-size: var(--text-lg);
  font-weight: var(--font-semi);
  flex-shrink: 0;
}

.feature-text {
  font-size: var(--text-sm);
  line-height: 200%;
  color: var(--text-gray-light);
  font-weight: var(--font-regular);
}

.anonymity-footer {
  font-size: var(--text-normal);
  line-height: 180%;
  color: var(--text-gray-light);
  margin: var(--space-lg) 0 0 0;
}

.anonymity-footer a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: var(--font-semi);
  transition: var(--transition-fast);
}

.anonymity-footer a:hover {
  color: var(--primary-blue-hover);
  text-decoration: underline;
}

.anonymity-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* ============================================
   Card Badge Styles (About Page Specific)
   ============================================ */

.about-banner .card {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border-lightest);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  width: 100%;
}

.about-banner .card-icon {
     margin-bottom: 15px;
}

.about-banner .card-icon .icon-image {
  width: auto;
  height: auto;
}

.about-banner .card-title {
      font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 7px;
    color: #464860;
}

.about-banner .card-description {
  font-weight: var(--font-regular);
  font-size: var(--text-sm);
  line-height: 100%;
  color: var(--text-muted);
  margin: 0;
}

.about-banner .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 84, 230, 0.1);
}
/* ============================================
   6. CARD COMPONENTS
   ============================================ */

/* Base Card */
.card {
  padding: 30px 20px;
  border: 1px solid var(--border-lighter);
  border-radius: var(--radius-xl);
  background: var(--bg-white);
  transition: var(--transition-normal);
}

.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Small Card Variant */
.card-sm {
  padding: 25px 20px;
  border-radius: var(--radius-lg);
}

/* Card Elements */
.card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-semi);
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.card-description {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-relaxed);
  color: var(--text-gray);
}

.card-icon {
  width: max-content;
  height: max-content;
  margin: auto;
  margin-bottom: 15px;
}


/* ============================================
   Responsive Styles
   ============================================ */

@media screen and (max-width: 991px) {
  .about-banner {
    padding: 60px 0;
  }

  .about-banner-title {
    font-size: 28px;
  }

  .about-banner-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .writers-anonymity {
    padding: 60px 0;
  }

  .writers-anonymity-title {
    font-size: 28px;
  }

  .anonymity-content {
    padding: var(--space-lg);
  }
}

@media screen and (max-width: 767px) {
  .about-banner {
    padding: 40px 0;
  }

  .about-banner-title {
    font-size: var(--text-2xl);
  }

  .about-banner-description {
    font-size: var(--text-normal);
  }

  .about-banner-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }

  .about-banner .card-badge {
    max-width: 100%;
  }

  .writers-anonymity {
    padding: 40px 0;
  }

  .writers-anonymity-wrapper {
    margin-top: var(--space-lg);
  }

  .writers-anonymity-title {
    font-size: var(--text-2xl);
  }

  .writers-anonymity-intro {
    font-size: var(--text-normal);
  }

  .anonymity-content {
    padding: 25px var(--space-md);
  }

  .anonymity-heading {
    font-size: var(--text-base);
  }

  .feature-text {
    font-size: var(--text-sm);
  }
}
/* ============================================
   Component 3: Student Reviews
   ============================================ */

/* Reviews Header */
.reviews-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-heading {
  font-weight: var(--font-semi);
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.reviews-description {
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: 180%;
  color: var(--text-gray-light);
  margin: 0;
}

/* Section Background */
.static-student-reviews-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-white);
}

.static-student-reviews-section.bgGradient {
  background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

.reviews-footer-text {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: 180%;
  color: var(--text-gray-light);
  margin: var(--space-2xl) auto 0;
  max-width: 700px;
}

/* Marquee Container */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 0;
  margin-top: 0px;
  display: flex;
}

/* First Row - Right to Left */
.marquee-row-1 .marquee-content {
  display: flex;
  gap: 24px;
  animation: marquee-rtl 180s linear infinite;
  flex-shrink: 0;
}

.marquee-row-1 .marquee-content-clone {
  display: flex;
  gap: 24px;
  animation: marquee-rtl 180s linear infinite;
  flex-shrink: 0;
}

/* Second Row - Left to Right (opposite direction) */
.marquee-row-2 .marquee-content {
  display: flex;
  gap: 24px;
  animation: marquee-ltr 180s linear infinite;
  flex-shrink: 0;
}

.marquee-row-2 .marquee-content-clone {
  display: flex;
  gap: 24px;
  animation: marquee-ltr 180s linear infinite;
  flex-shrink: 0;
}
.reviewsWrap{
  margin-top: 50px;
}
/* Pause animation on reviewsWrap hover */
.reviewsWrap:hover .marquee-content {
  animation-play-state: paused;
}

/* Right to Left animation */
@keyframes marquee-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Left to Right animation (opposite) */
@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Review Card */
.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-md);
  min-width: 380px;
  max-width: 380px;
  height: 274px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  flex-shrink: 0;
  border: 1px solid var(--border-lighter);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-base);
  gap: var(--space-sm);
}

.platform-name {
  flex-shrink: 0;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--text-tertiary);
}

.rating-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
}

.rating-number {
  font-size: var(--text-xs);
  font-weight: var(--font-regular);
  color: var(--text-gray-light);
}

.review-time {
  font-size: 11px;
  font-weight: var(--font-regular);
  color: #9ca3af;
}

/* Stars */
.stars-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #fbbf24;
  font-size: var(--text-lg);
}

.rating-text {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-left: 4px;
}

/* Company Name */
.reviwe-title {
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  line-height: var(--leading-normal);
  color: var(--text-tertiary);
  margin-bottom: var(--space-xs);
}

/* Review Text Wrapper */
.review-text-wrapper {
  flex: 1;
  margin-bottom: var(--space-base);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Review Text */
.review-text {
  font-size: 12px;
  font-weight: var(--font-regular);
  line-height: 180%;
  color: var(--text-gray-light);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.review-read-more {
  color: var(--primary-blue);
  font-weight: var(--font-semi);
  text-decoration: underline;
  white-space: nowrap;
  transition: var(--transition-fast);
  font-size: 12px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-read-more:hover {
  color: var(--primary-blue-hover);
  text-decoration: none;
}

.review-read-more::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230654E6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}



.review-read-more:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  transform: translate(1px, -1px);
}

/* Verified Badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #E3FFEE;
  color: var(--success);
  padding: 2px var(--space-xs);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: var(--font-semi);
  line-height: 180%;
  margin-bottom: var(--space-md);
}

/* Review Details */
.review-details {
  margin-bottom: 8px;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-lightest);
}

.subject-info {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  font-weight: var(--font-regular);
  font-size: 12px;
  line-height: 140%;
  color: var(--text-tertiary);
}

.subject-icon {
  font-size: var(--text-base);
}

/* Review Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.author-info {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.author-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: var(--radius-circle);
  background: var(--primary-blue);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
}

.author-name {
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  line-height: 100%;
  color: var(--text-tertiary);
}

.review-date {
  font-size: 12px;
  font-weight: var(--font-regular);
  color: var(--text-gray);
}

.grade-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: var(--font-regular);
  line-height: 110%;
}

.star-icon {
  font-size: var(--text-sm);
}

/* See All Reviews Button */
.see-all-reviews {
  text-align: center;
  margin-top: var(--space-2xl);
}

.see-all-btn {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border: none;
  padding: 9px var(--space-md);
  border-radius: var(--radius-lg);
  font-size: var(--text-normal);
  display: block;
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
  font-weight: var(--font-semi);
  cursor: pointer;
  transition: var(--transition-normal);
  height: 41px;
}

.see-all-btn:hover {
  background-color: var(--primary-blue-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.see-all-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-heading {
    font-size: 32px;
  }

  .reviews-description {
    font-size: 15px;
  }

  .static-student-reviews-section {
    padding: 60px 0;
  }

  .reviews-header {
    margin-bottom: 50px;
  }

  .review-card {
    min-width: 340px;
    max-width: 340px;
    height: auto;
    min-height: 274px;
    padding: 20px;
  }

  .marquee-row-1 .marquee-content {
    animation: marquee-rtl 120s linear infinite;
  }

  .marquee-row-2 .marquee-content {
    animation: marquee-ltr 120s linear infinite;
  }
}

@media (max-width: 575px) {
  .reviews-heading {
    font-size: 28px;
  }

  .reviews-description {
    font-size: 14px;
  }

  .static-student-reviews-section {
    padding: 50px 0;
  }

  .reviews-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .reviews-footer-text {
    font-size: 13px;
    padding: 0 15px;
  }

  .review-card {
    min-width: 300px;
    max-width: 300px;
    height: auto;
    min-height: 260px;
    padding: 16px;
  }
    .marquee-container {
               padding: 0px 15px;
        
    }
  .see-all-btn {
    width: 100%;
    max-width: 300px;
    font-weight: 400;
  }
    .marquee-row-1 .marquee-content {
        animation: marquee-rtl 90s linear infinite;
        padding: 19px 15px 0;
        margin: 0px 15px;
    }

    .marquee-row-2 .marquee-content {
        animation: marquee-ltr 90s linear infinite;
        padding: 19px 15px 0px;
        margin: 0px 15px;
    }
    /* Webkit browsers (Chrome, Safari, Edge) */
.marquee-content::-webkit-scrollbar {
  width: 6px;                  /* Very thin – matches your image */
  height: 6px;
}
.reviewsWrap {
    margin-top: 30px;
}

.marquee-content::-webkit-scrollbar-track {
 background: var(--bg-lightest-blue);     /* Fully transparent track */
  border-radius: 10px;
}

.marquee-content::-webkit-scrollbar-thumb {
  background: var(--primary-blue);        /* Very light blue-gray when inactive */
  border-radius: 10px;
  transition: background 0.2s ease;
}

.marquee-content::-webkit-scrollbar-thumb:hover,
.marquee-content::-webkit-scrollbar-thumb:active {
  background: var(--primary-blue)         /* Bright blue when hovering or scrolling (exactly like your image) */
}

/* Optional: make corner fully clean */
.marquee-content::-webkit-scrollbar-corner {
  background: var(--bg-lightest-blue);
}
}
/* ============================================
   Component 4: Guarantees Section
   ============================================ */

.static-guarantees-section {
  padding: var(--space-3xl) 0;
}

.guarantees-header {
  text-align: center;
  margin-bottom: 70px;
}

.guarantees-heading {
  font-weight: var(--font-semi);
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
}

.guarantees-description {
  font-size: var(--text-base);
  line-height: 180%;
  color: var(--text-gray-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Guarantees Grid */
.guarantees-grid {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
  scroll-behavior: smooth;
  position: relative;
  padding-bottom: 70px;
}

/* Dynamic width based on number of items */
.guarantees-count-1 .guarantees-grid {
  max-width: 300px;
}

.guarantees-count-2 .guarantees-grid {
  max-width: 500px;
  gap: 40px;
}

.guarantees-count-3 .guarantees-grid {
  /* max-width: 750px; */
  gap: 80px;
}

.guarantees-count-4 .guarantees-grid {
  /* max-width: 950px; */
  gap: 50px;
}

.guarantees-count-5 .guarantees-grid {
  max-width: 1100px;
  gap: 30px;
}

/* Hide scrollbar for cleaner look */
.guarantees-grid {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.guarantees-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Guarantee Card */
.guarantee-card {
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-sm);
  /* max-width is set dynamically via inline style prop (default: 195px) */
  flex-shrink: 0;
}

.guarantee-card:hover {
  transform: scale(1.03);
}

.guarantee-title {
  font-weight: var(--font-regular);
  font-size: var(--text-base);
  line-height: 100%;
  color: var(--text-tertiary);
  text-align: center;
  padding-bottom: var(--space-sm);
  margin: 0;
}

/* Guarantee Icon */
.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-bottom: var(--space-lg);
}

/* Guarantee Description */
.guarantee-description {
  font-weight: var(--font-regular);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  text-align: center;
  color: var(--text-gray-light);
  margin: 0;
}

/* Guarantees Navigation Buttons */
.guarantees-grid-container {
  position: relative;
}

.guarantees-nav-btn {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--bg-white);
  border: 1px solid var(--primary-blue);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.guarantees-nav-btn.prev {
  left: 45%;
  bottom: 0;
}

.guarantees-nav-btn.next {
  left: 55%;
  bottom: 0;
}

.guarantees-nav-btn::before {
  content: '';
  width: 13px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(93%) saturate(5859%) hue-rotate(219deg) brightness(97%) contrast(95%);
}

.guarantees-nav-btn.prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 5L0.5 5M0.5 5L5 9.5M0.5 5L5 0.5' stroke='%23A1B8D5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.guarantees-nav-btn.next::before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 5L12.5 5M12.5 5L8 0.5M12.5 5L8 9.5' stroke='%235F728B' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.guarantees-nav-btn:hover {
  border-color: var(--primary-blue);
  background: var(--bg-white);
}

.guarantees-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--border-light);
}

/* Hide buttons by default, show only when there are more than 5 items */
.guarantees-nav-btn {
  display: none;
}

.guarantees-grid-container.has-navigation .guarantees-nav-btn {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .static-guarantees-section {
    padding: 60px 20px;
  }

  .guarantees-header {
    margin-bottom: 60px;
  }

  .guarantees-heading {
    font-size: 28px;
  }

  .guarantees-grid {
    gap: 20px;
  }

  .guarantee-card {
    padding: 25px 20px;
  }

  .guarantee-description {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .guarantees-nav-btn.next {
    left: 57%;
  }

  .guarantees-nav-btn.prev {
    left:33%;
  }

  .static-guarantees-section {
    padding: 40px 16px;
  }

  .guarantees-header {
    margin-bottom: 40px;
  }

  .guarantees-heading {
    font-size: 24px;
  }

  .guarantees-grid {
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
  }

  .guarantee-card {
    padding: 20px 16px;
    width: 420px;
    max-width: 450px;
    flex: 0 0 250px;
  }

  /* Webkit browsers (Chrome, Safari, Edge) */
  .guarantees-grid::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    display: block;
  }

  .guarantees-grid::-webkit-scrollbar-track {
    background: var(--bg-lightest-blue);
    border-radius: 10px;
  }

  .guarantees-grid::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
    transition: background 0.2s ease;
  }

  .guarantees-grid::-webkit-scrollbar-thumb:hover,
  .guarantees-grid::-webkit-scrollbar-thumb:active {
    background: var(--primary-blue);
  }

  .guarantees-grid::-webkit-scrollbar-corner {
    background: var(--bg-lightest-blue);
  }

  .guarantee-description {
    font-size: 12px;
  }
}

/* ============================================
   Component 5: Real Company Section
   ============================================ */

.real-company-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(125.14deg,#ebf7ff,#fff 31.65%,#fbfcff 70.91%,#ebf7ff);
}

.real-company-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.real-company-title {
  font-weight: var(--font-semi);
  font-size: var(--text-3xl);
  line-height: 100%;
  color: var(--text-tertiary);
  margin-bottom: var(--space-xl);
}

.real-company-content {
 
  margin: 0 auto var(--space-2xl);
}

.real-company-text {
font-size: 15px;
    line-height: 200%;
    color: #60738a;
    margin-bottom: 30px;
    font-weight: 300;
     margin: auto;
    margin-bottom: var(--space-lg);
    max-width: 778px;
   
}

.real-company-text:last-child {
  margin-bottom: 0;
}

.real-company-text strong {
  color: var(--text-tertiary);
  font-weight: var(--font-semi);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--border-lightest);
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: var(--transition-normal);
  box-shadow: 0px 0px 7.3px 0px var(--bg-lightest-blue) inset;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 84, 230, 0.1);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.stat-content {
  text-align: left;
  flex: 1;
}

.stat-title {
  font-size: var(--text-sm);
  line-height: 120%;
  color: var(--text-gray-light);
  margin: 0;
}

.stat-subtitle {
  font-weight: var(--font-regular);
  font-size: var(--text-xs);
  line-height: 140%;
  color: var(--text-gray-light);
  margin: 4px 0 0 0;
      text-align: left;
}

.real-company-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

/* Responsive Design */
@media (max-width: 991px) {
  .real-company-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .real-company-title {
    font-size: 28px;
  }

  .stats-grid {
    gap: var(--space-sm);
  }

  .stat-card {
    min-width: 140px;
    padding: var(--space-sm) var(--space-base);
  }
}

@media (max-width: 767px) {
  .real-company-section {
    padding: var(--space-xl) var(--space-base);
  }

  .real-company-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
  }

  .real-company-text {
    font-size: var(--text-sm);
  }

  .stats-grid {
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
  }

  .stat-card {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}
