/* ===================
   CONTENT BLOCKS STYLES
   Centralized CSS for all Webflow embeds
   =================== */

/* ===================
   CSS VARIABLES (from Webflow)
   =================== */
:root {
  --gradient-variant-top: #1a56db;
}

/* ===================
   LANDING PAGE STYLES
   =================== */

.landing-page-heading-description,
.landing-page-heading-description * {
    color: var(--neutral--100) !important;
    background: transparent !important;
}
.landing-page-heading-description a {
    color: var(--neutral--100) !important;
    text-decoration: underline;
}

/* ===================
   TILE GRID
   =================== */
.landing-page-collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.landing-page-collection-item {
  border: 3px solid var(--gradient-variant-top);
  border-radius: 8px;
  box-shadow: 0 2px 5px 3px #0003;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.landing-page-collection-item-contents {
  flex-flow: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.landing-page-collection-title-container {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.landing-page-collection-title {
  max-width: 85%;
  margin-bottom: 5px;
  overflow: hidden;
}

.landing-page-collection-icon {
  width: 30px;
  position: absolute;
  top: 19px;
  right: 10px;
}

.landing-page-collection-desc {
  padding-bottom: 10px;
}

/* Rotating border colors for tile grid (10-color palette) */
.solution-page-tiles:nth-child(10n+1) { border-color: #A5E900; }
.solution-page-tiles:nth-child(10n+2) { border-color: #54D3C3; }
.solution-page-tiles:nth-child(10n+3) { border-color: #4ED5E6; }
.solution-page-tiles:nth-child(10n+4) { border-color: #1190A8; }
.solution-page-tiles:nth-child(10n+5) { border-color: #5D8EE0; }
.solution-page-tiles:nth-child(10n+6) { border-color: #473762; }
.solution-page-tiles:nth-child(10n+7) { border-color: #8352A7; }
.solution-page-tiles:nth-child(10n+8) { border-color: #8B1F90; }
.solution-page-tiles:nth-child(10n+9) { border-color: #C42EA4; }
.solution-page-tiles:nth-child(10n+10) { border-color: #BC75E4; }

@media (max-width: 767px) {
  .landing-page-collection-list {
    grid-template-columns: 1fr !important;
  }
}

/* ===================
   TESTIMONIAL
   =================== */

.testimonial-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 30px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-family: "Neo Sans Pro", sans-serif;
  line-height: 1.7;
  color: #333;
  margin: 0 0 24px 0;
  /* Reset site blockquote styles */
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #473762;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  color: #111;
  font-size: 0.95rem;
}

.testimonial-title {
  color: #666;
  font-size: 0.85rem;
}

/* ===================
   ICON CARDS
   =================== */

.icon-cards-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-auto-columns: 1fr;
    display: grid;
}

.icon-card {
    padding: 0;
}

.icon-card-icon {
    margin-bottom: 16px;
}

.icon-card-icon img {
    width: 48px;
    height: 48px;
}

.icon-card-title {
		color: #483662;
    font-family: "Neo Sans Pro", sans-serif;
  	font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.icon-card-description {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .icon-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===================
   FEATURE LIST
   =================== */
.feature-list {
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.feature-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-list-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list-icon img {
  max-width: 100%;
  max-height: 100%;
}

.feature-list-content {
  flex: 1;
}

.feature-list-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

.feature-list-desc {
  color: #555;
  line-height: 1.5;
}

.feature-list-desc p {
  margin: 0;
}

@media (max-width: 767px) {
  .feature-list {
    grid-template-columns: 1fr !important;
  }
}

/* ===================
   COMPARISON TABLE
   =================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

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

.comparison-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #111;
}

.comparison-table .feature-name {
  font-weight: 500;
}

.comparison-table .plan-value {
  text-align: center;
  color: #555;
}

.comparison-row:hover {
  background: #f9fafb;
}

@media (max-width: 767px) {
  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 10px;
  }
}

/* ===================
   STATS
   =================== */
.stats-grid {
  display: grid !important;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-auto-columns: 1fr;
  background: #483662;
  padding: 60px 40px;
  border-radius: 12px;
}

.stats-item {
  text-align: center;
}

.stats-number {
  display: block;
  font-family: "Neo Sans Pro", sans-serif;
  font-weight: 800;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #5BF078 0%, #A5E900 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.stats-suffix {
  font-size: 0.4em;
  vertical-align: super;
  line-height: 0;
  position: static;
}

.stats-description {
  font-family: "Neo Sans Pro", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  background: linear-gradient(135deg, #5BF078 0%, #A5E900 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

@media (max-width: 479px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
    padding: 40px 24px;
  }

  .stats-number {
    font-size: 4rem;
  }
}
