.comparison-container{
  background-color:#FFFFFF;
}
.comparison-table {
    max-width: 1100px;
    margin: 0 auto;
  }
.eylet-intro-block {
  text-align: center;
  margin: 0 auto;
  padding: 24px 16px 12px;
  max-width: 700px;
}

.intro-line-1 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.intro-line-2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 16px;
  background: linear-gradient(90deg, #0071e3, #a246ef, #ff4aa2, #f80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.intro-line-3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Optional for smaller phones */
@media (max-width: 480px) {
  .intro-line-1 {
    font-size: 1rem;
  }

  .intro-line-2 {
    font-size: 1.2rem;
  }

  .intro-line-3 {
    font-size: 0.95rem;
  }
}



.comparison-sticky {
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: sticky;
  top: 65px;
  background: white;
  z-index: 100;
  padding-bottom: 2px;
}
   .hide-sticky {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

  .table-header {
    display: grid;
    grid-template-columns: 1.8fr 0.7fr 0.7fr 0.7fr;
    background: #f0f0f0;
    padding: 16px 20px;
    border-radius: 10px;
    align-items: center;
    text-align: left;
    font-weight: 600;
    margin-bottom: 8px; /* adds gap between header and rows */
  }

  .table-row {
    display: grid;
    grid-template-columns: 1.8fr 0.7fr 0.7fr 0.7fr;
    background: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 10px;
    align-items: start;
    padding: 16px 20px;
    transition: background 0.3s ease, padding-bottom 0.3s ease;
  }

  .table-row.expandable.active {
    background: #eaeaea;
  }

  .feature-block {
    display: flex;
    flex-direction: column;
  }

  .feature-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
    color: #111;
  }

  .feature-title span {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .arrow-icon {
    color: #999;
    font-size: 14px;
    margin-right: 4px;
  }

  .feature-description {
    font-size: 13px;
    color: #444;
    margin-top: 12px;
    grid-column: 1 / -1;
    padding-left: 2px;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.3s ease;
  }

  .expandable.active .feature-description {
    max-height: 200px;
    opacity: 1;
  }

  .col {
    text-align: center;
  }

.icon {
  height: 30px;
  width: 30px;
  transition: transform 0.3s ease;
}

/* âœ… Rotate tic.svg only when row is active */
.table-row.expandable.active img.icon[src*="tic.svg"] {
  transform: rotate(360deg);
}


  .info-icon {
    width: 16px;
    margin-left: 10px;
    filter: brightness(0.4);
  }

  @media (max-width: 600px) {
    .info-icon {
      display: none;
    }
  }
  /* Desktop only: fade out info icon when row is expanded */
@media (min-width: 601px) {
  .info-icon {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .table-row.expandable.active .info-icon {
    opacity: 0;
  }
}

   
 /* âœ… Summary Section Styles */
.summary-section {
/*  padding: 40px 16px;*/
  padding: 40px 0px;
  background: #fff;
  color: #111;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.summary-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.summary-grid {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.summary-card {
  padding: 24px;
  border: 1px solid #ccc;
  border-radius: 12px;
  text-align: left;
  background: #fafafa;
  transition: background 0.3s ease;
}

.summary-card:first-child {
  background: #f0fff3; /* ðŸ‘ˆ Light greenish-blue for Eylet */
  border-color: #157347;
}

.comparison-sticky {
  transition: opacity 0.6s ease;
}
/* âœ… Container and Section */
/* âœ… Base Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  table-layout: fixed;
}

.pricing-table thead {
  background: #f8f9fb;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  word-wrap: break-word;
  word-break: break-word;
}

/* âœ… Highlight eylet column */
.pricing-table td:nth-child(2) {
  background: #f0fff3;
  font-weight: 500;
  color: #157347;
}

/* âœ… Table Wrapper */
.pricing-table-wrapper {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

/* âœ… Mobile optimization */
@media (max-width: 768px) {
 /* === General Layout === */
.pricing-section {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 16px;
  font-family: 'Poppins', sans-serif;
}

.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table-rounded {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 13px;
  background: #fff;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 10px 8px;
  white-space: normal;
  text-align: left;
}

.pricing-table th {
  font-weight: 600;
  background: #f9fafb;
  text-align: center;
}

/* Column widths */
.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 50%;
  text-align: left;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2),
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3),
.pricing-table th:nth-child(4),
.pricing-table td:nth-child(4) {
  width: 16.66%;
  text-align: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .pricing-section {
    padding: 0 8px;
  }

  .pricing-table th,
  .pricing-table td {
    font-size: 12px;
    padding: 8px 6px;
  }
}

/* Summary */
.pricing-summary {
  margin-top: 32px;
  font-size: 14px;
  color: #333;
}

.pricing-summary h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-summary p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.disclaimer-wrapper {
  max-width: 860px;
  margin: 40px auto 0;
  padding: 0 16px;
  border-top: 1px solid rgba(200, 200, 200, 0.2); /* Faint top line */
  padding-top: 12px;
}

.disclaimer {
  font-size: 11.3px;
  color: #888;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.75;
  font-weight: 400;
  text-align: left;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .disclaimer-wrapper {
    padding: 0 12px;
    margin-top: 32px;
  }

  .disclaimer {
    font-size: 11.5px;
    opacity: 0.85;
    color: #777;
  }
}


.comparison-table {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
  }
.eylet-intro-block {
  text-align: center;
  margin: 0 auto;
  padding: 24px 16px 12px;
  max-width: 700px;
}

.intro-line-1 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.intro-line-2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0 16px;
  background: linear-gradient(90deg, #0071e3, #a246ef, #ff4aa2, #f80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.intro-line-3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Optional for smaller phones */
@media (max-width: 480px) {
  .intro-line-1 {
    font-size: 1rem;
  }

  .intro-line-2 {
    font-size: 1.2rem;
  }

  .intro-line-3 {
    font-size: 0.95rem;
  }
}

.eylet-intro-block {
  text-align: center;
  margin: 0 auto;
  padding: 24px 16px 12px;
  max-width: 700px;
}

.intro-line-1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.intro-line-2.gradient-text {
  font-size: 30px;         /* Change to your preferred size */
  font-weight: 700;
  background: linear-gradient(90deg, #0071e3, #7a33ff, #ff3366, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 12px 0;
}
  /* Show the <br> only on mobile */
.mobile-break {
  display: none;
}

@media (max-width: 767px) {
  .mobile-break {
    display: inline;
}
@media (min-width: 768px) {
  .intro-line-1 {
    font-size: 2.5rem; /* h1-style size on desktop */
  }
}