
    .features-section {
        background-color: rgba(59, 130, 246, 0.05); /* primary/5 */
        border-top: 1px solid rgba(59, 130, 246, 0.1);
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        padding: 0;
    }

    .features-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px;
    }

    .features-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #111827;
        font-weight: 500;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        stroke: #1fbdce;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

@media (min-width: 768px) {
    .features-wrapper {
        gap: 48px;
    }

    .feature-item {
        font-size: 16px;
    }
}

.stats-section {
    padding: 48px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 16px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: #1fbdce;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.stat-label {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: #6b7280;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .stat-number {
        font-size: 30px;
    }
}

.comparison-section {
    padding: 64px 0;
    background-color: #f5f7fb;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.comparison-header p {
    max-width: 640px;
    margin: 0 auto;
    color: #6b7280;
}

/* TABLE */
.comparison-table-wrapper {
    display: none;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.comparison-table th {
    background: #f3f4f6;
    font-weight: 600;
}

.comparison-table th.rentfoxxy {
    color: #1fbdce;
}

.comparison-table th.competitor {
    color: #6b7280;
}

/* ICONS */
.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}



.positive {
    color: #111827;
}

.negative {
    color: #6b7280;
}

/* MOBILE CARDS */
.comparison-mobile {
    display: grid;
    gap: 16px;
}

.comparison-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.comparison-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .comparison-table-wrapper {
        display: block;
    }

    .comparison-mobile {
        display: none;
    }
}



    
.pricing-factors {
    padding: 48px 0;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.pricing-inner {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: #6b7280;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* CARD */
.pricing-card {
    background-color: #f5f5f54d;
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pricing-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    background-color: #f9fafb;
}

.pricing-card svg {
    width: 32px;
    height: 32px;
    stroke: #1fbdce;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 8px;
}

.pricing-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.pricing-card p {
    font-size: 12px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .pricing-factors {
        padding: 64px 0;
    }

    .pricing-header h2 {
        font-size: 24px;
    }

    .pricing-header p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.05), #fff, rgba(99,102,241,0.1));
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.pro-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59,130,246,0.1);
  color: #1fbdce;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-header p {
  color: #6b7280;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
  box-shadow: 0 15px 30px rgba(59,130,246,0.15);
}

.step-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #0cb7ca;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
}

.icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #0cb7ca;
  stroke-width: 2;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.benefits-section {
  padding: 80px 0;
  background: #f5f6f8;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.benefits-header p {
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: auto;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s ease;
}

.benefit-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #1fbdce;
  stroke-width: 2;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.testimonials-section {
  padding: 80px 0;
  background: #f4f6f8;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}


/* Case Studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.case-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s ease;
}

.case-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.case-header h3 {
    font-weight:600;
    font-size:inherit;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-details div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.case-details span {
  color: #6b7280;
}

.highlight {
  color: #0cb7ca;
}

.success {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  color: #16a34a;
  font-size: 13px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
}

.quote {
  font-size: 40px;
  color: #93c5fd;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #0cb7ca;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.user span {
  display: block;
  font-size: 12px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
  .case-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .case-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.delivery-section {
    padding: 48px 0;
    background: rgba(59, 130, 246, 0.05);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.delivery-box {
    text-align: center;
}

.delivery-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #3b82f6;
}

.delivery-box h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.delivery-box p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .delivery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .delivery-box h3 {
        font-size: 16px;
    }

    .delivery-box p {
        font-size: 14px;
    }
}
