/* ===== Cyntra Industry Pricing Grid Section ===== */
.cy-industry-pricing-section {
  padding: 60px 0 40px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.cy-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.cy-tabs-wrapper {
  display: inline-flex;
  align-items: stretch;
  background: #F5F9FE;
  border: 1px solid #4d9cf6;
  border-radius: 9999px;
  padding: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.cy-tab-btn {
  border: none;
  background: transparent;
  padding: 13px 44px;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #222222;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  outline: none;
  line-height: 1.3;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cy-tab-btn:hover {
  color: #4d9cf6;
}

.cy-tab-btn.active {
  background-color: #4d9cf6;
  color: #ffffff;
  font-weight: 500;
}

/* Cards Grid */
.cy-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

/* Tab panel show/hide */
.cy-tab-panel {
  display: none;
}
.cy-tab-panel.active {
  display: contents;
}

.cy-solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.cy-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

/* Image Showcase & Ellipse */
.cy-card-img-wrap {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Ellipse SVG background - reduced size matching desktop reference */
.cy-card-ellipse-svg {
  position: absolute;
  width: 250px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  max-width: 90%;
}

.cy-card-img {
  position: relative;
  z-index: 2;
  max-height: 175px;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cy-solution-card:hover .cy-card-img {
  transform: scale(1.04);
}

/* Card Header */
.cy-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.cy-card-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #8b95a5;
  margin: 0 0 22px 0;
  line-height: 1.4;
  min-height: 20px;
}

/* Card Features */
.cy-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cy-card-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.4;
}

.cy-check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* Divider & Price */
.cy-card-divider {
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
  padding-top: 18px;
  margin-bottom: 16px;
}

.cy-card-price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.cy-price-num {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
}

.cy-price-period {
  font-size: 0.9rem;
  font-weight: 400;
  color: #64748b;
  margin-left: 5px;
}

.cy-price-extra {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #64748b;
  margin-top: -12px;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Action Buttons */
.cy-card-actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.cy-card-btn {
  width: 208px;
  max-width: 100%;
  height: 45px;
  border-radius: 100px;
  border-width: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  opacity: 1;
  letter-spacing: 0.01em;
}

.cy-card-actions .cy-card-btn {
  flex: 1;
  max-width: 208px;
  height: 45px;
}

.cy-btn-outline {
  background-color: #ffffff;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.cy-btn-outline:hover {
  background-color: #eff6ff;
  color: #2563eb;
  border-color: #2563eb;
}

.cy-btn-solid {
  background-color: #3b82f6;
  color: #ffffff;
  border: 2px solid #3b82f6;
}

.cy-btn-solid:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* Ecosystem actions button sizing */
.cy-eco-actions .cy-card-btn {
  height: clamp(42px, 3.8vw, 46px);
  border-radius: 100px;
}

.cy-eco-actions .cy-btn-outline {
  box-sizing: border-box;
  width: auto;
  min-width: 96px;
  height: clamp(42px, 3.8vw, 46px);
  padding: 0 clamp(18px, 1.8vw, 24px);
  border: 1.5px solid #3b82f6;
  border-radius: 100px;
  background-color: transparent;
  color: #3b82f6;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all 0.2s ease;
}

.cy-eco-actions .cy-btn-outline:hover {
  background-color: rgba(59, 130, 246, 0.08);
  color: #2563eb;
  border-color: #2563eb;
}

.cy-eco-actions .cy-btn-solid {
  box-sizing: border-box;
  width: auto;
  min-width: 125px;
  height: clamp(42px, 3.8vw, 46px);
  padding: 0 clamp(20px, 2vw, 26px);
  border: 1.5px solid #3b82f6;
  border-radius: 100px;
  background-color: #3b82f6;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all 0.2s ease;
}

.cy-eco-actions .cy-btn-solid:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* Full Ecosystem Banner */
.cy-ecosystem-banner {
  display: none;
  background: #EDF6FD;
  border: 1px solid #E2E8F0;
  border-radius: clamp(18px, 2vw, 28px);
  padding: clamp(22px, 2.2vw, 32px) clamp(22px, 2.5vw, 38px);
  margin: 50px auto 0;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.35fr) minmax(320px, 1.15fr);
  gap: clamp(16px, 2vw, 30px);
  align-items: center;
  min-height: clamp(340px, 26vw, 430px);
  max-width: 1648px;
  width: 100%;
  box-sizing: border-box;
  opacity: 1;
}

.cy-ecosystem-banner.active {
  display: grid;
}

.cy-eco-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.cy-eco-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 clamp(8px, 1vw, 14px) 0;
  line-height: 1.25;
}

.cy-eco-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 clamp(16px, 1.8vw, 28px) 0;
}

.cy-eco-price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: clamp(16px, 1.8vw, 24px);
  font-family: 'Poppins', sans-serif;
}

.cy-eco-price-num {
  font-size: clamp(1.5rem, 1.9vw, 1.95rem);
  font-weight: 700;
  color: #0f172a;
}

.cy-eco-price-period {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  font-weight: 400;
  color: #64748b;
  margin-left: 5px;
}

.cy-eco-actions {
  display: flex;
  gap: clamp(10px, 1.2vw, 16px);
  flex-wrap: nowrap;
  align-items: center;
}

.cy-eco-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cy-eco-center img {
  display: block;
  width: 100%;
  max-width: 620px;
  max-height: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(59, 130, 246, 0.08));
  transition: transform 0.3s ease;
}

.cy-eco-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 100%;
}

/* White card behind the includes section in ecosystem */
.cy-eco-includes-card {
  background: #FFFFFF;
  border-radius: clamp(16px, 1.5vw, 20px);
  width: 100%;
  max-width: clamp(320px, 24vw, 400px);
  height: 100%;
  min-height: clamp(320px, 24vw, 390px);
  padding: clamp(18px, 1.8vw, 26px) clamp(16px, 1.6vw, 22px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  opacity: 1;
  overflow: hidden;
}

.cy-eco-includes-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.15rem, 1.3vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 clamp(14px, 1.5vw, 20px) 0;
}

.cy-eco-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vw, 12px);
}

.cy-eco-checklist-compact {
  gap: clamp(12px, 1.2vw, 16px);
}

.cy-eco-checklist-item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.8vw, 10px);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.78rem, 0.82vw, 0.84rem);
  font-weight: 500;
  color: #334155;
  line-height: 1.35;
  min-width: 0;
}

.cy-eco-checklist-item span {
  min-width: 0;
  overflow-wrap: break-word;
}

.cy-eco-checklist-item svg {
  flex-shrink: 0;
  width: clamp(15px, 1vw, 17px);
  height: clamp(15px, 1vw, 17px);
}

.cy-eco-badge {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.8rem, 0.88vw, 0.88rem);
  font-weight: 700;
  color: #3b82f6;
  margin-top: auto;
  padding-top: clamp(14px, 1.5vw, 20px);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .cy-ecosystem-banner.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(28px, 3.5vw, 36px) clamp(20px, 2.5vw, 28px);
    min-height: auto;
    height: auto;
  }
  .cy-eco-left {
    order: 1;
    text-align: center;
    align-items: center;
  }
  .cy-eco-desc {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .cy-eco-price-row {
    justify-content: center;
  }
  .cy-eco-actions {
    justify-content: center;
  }
  .cy-eco-center {
    order: 2;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }
  .cy-eco-center img {
    width: 100%;
    max-width: 560px;
    height: auto;
    max-height: 320px;
    margin: 0 auto;
  }
  .cy-eco-right {
    order: 3;
    padding-left: 0;
    justify-content: center;
    width: 100%;
  }
  .cy-eco-includes-card {
    height: auto;
    min-height: auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .cy-eco-checklist {
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .cy-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cy-tab-panel.active {
    display: contents;
  }
  .cy-tab-btn {
    padding: 12px 28px;
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .cy-tabs-container {
    margin-bottom: 28px;
    padding: 0 12px;
  }
  .cy-tabs-wrapper {
    display: flex;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
  }
  .cy-tab-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 9px clamp(3px, 1.2vw, 10px);
    font-size: clamp(0.75rem, 2.2vw, 0.92rem);
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cy-pricing-grid {
    grid-template-columns: 1fr;
  }
  .cy-tabs-container {
    margin-bottom: 24px;
    padding: 0 8px;
  }
  .cy-tabs-wrapper {
    display: flex;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    padding: 0;
  }
  .cy-tab-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px clamp(2px, 1vw, 6px);
    font-size: clamp(0.7rem, 2.7vw, 0.84rem);
    text-align: center;
    justify-content: center;
  }
  .cy-solution-card {
    padding: 24px 20px 20px;
  }
  .cy-card-ellipse-svg {
    width: 220px;
    height: auto;
  }
  .cy-eco-actions {
    flex-wrap: nowrap;
    width: 100%;
    gap: 10px;
  }
  .cy-eco-actions .cy-btn-outline {
    flex: 1 1 42%;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 48px;
    font-size: 0.9rem;
  }
  .cy-eco-actions .cy-btn-solid {
    flex: 1 1 58%;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 48px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .cy-tab-btn {
    font-size: 0.68rem;
    padding: 7px 1px;
  }
}

