/** Shopify CDN: Minification failed

Line 17:19 Unexpected "{"
Line 17:28 Expected ":"
Line 17:35 Unexpected "{"
Line 18:10 Expected identifier but found whitespace
Line 18:12 Unexpected "{"
Line 18:21 Expected ":"
Line 18:48 Unexpected "0"
Line 18:51 Unexpected "{"
Line 18:60 Expected ":"
Line 18:89 Expected ":"
... and 22 more hidden warnings

**/
/* START_SECTION:breadcrumb-trail (INDEX:3) */
.breadcrumb-trail-{{ section.id }} {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
}
.breadcrumb-trail-{{ section.id }} .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 24px 0px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: {{ section.settings.font_size }}px;
}
.breadcrumb-trail-{{ section.id }} a,
.breadcrumb-trail-{{ section.id }} .current {
  color: {{ section.settings.text_color }};
}
.breadcrumb-trail-{{ section.id }} a {
  text-decoration: none;
}
.breadcrumb-trail-{{ section.id }} a:hover {
  text-decoration: underline;
}
.breadcrumb-trail-{{ section.id }} .sep {
  color: {{ section.settings.text_color }};
  opacity: 0.6;
}
/* END_SECTION:breadcrumb-trail */
/* START_SECTION:compare-table (INDEX:17) */
.compare-table-section {
  background: var(--ct-section-bg);
  padding: var(--ct-padding-top) 0 var(--ct-padding-bottom);
  font-family: 'Manrope', sans-serif;
}

.compare-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.compare-table-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}

.compare-table-eyebrow {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ct-eyebrow-color);
  margin: 0 0 10px;
}

.compare-table-heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--ct-heading-color);
  margin: 0 0 12px;
}

.compare-table-subheading {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ct-subheading-color);
  margin: 0;
}

.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--ct-border-color);
  border-radius: 16px;
  background: var(--ct-table-bg);
}

table.compare-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 13.5px;
}

table.compare-table thead th {
  background: var(--ct-header-row-bg);
  color: var(--ct-heading-color);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  padding: 16px 20px;
}

table.compare-table .row-label-col {
  width: 30%;
}

table.compare-table tbody th,
table.compare-table tbody td {
  padding: 14px 20px;
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  border-top: 1px solid var(--ct-border-color);
}

table.compare-table tbody th.row-label {
  font-weight: 700;
  color: var(--ct-label-color);
  white-space: nowrap;
}

table.compare-table tbody td {
  color: var(--ct-value-color);
}

table.compare-table tbody tr:nth-child(even) {
  background: var(--ct-stripe-bg);
}

.compare-table-footer-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--ct-subheading-color);
  margin-top: 24px;
}

.compare-table-footer-note p {
  margin: 0;
}

.compare-table-footer-note a {
  color: var(--ct-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (max-width: 540px) {
  .compare-table-section {
    padding: calc(var(--ct-padding-top) * 0.6) 0 calc(var(--ct-padding-bottom) * 0.6);
  }
  .compare-table-heading {
    font-size: 20px;
  }
}
/* END_SECTION:compare-table */
/* START_SECTION:features-bar (INDEX:35) */
.features-bar-section {
  border-top: 1px solid var(--border-color, #e5e5e5);
  border-bottom: 1px solid var(--border-color, #e5e5e5);
  padding: 40px 0;
}

.features-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features-bar-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--icon-bg, #f2e9fb);
  color: var(--icon-color, #7b3fe4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Force filled/solid icon rendering, independent of any theme-level svg
   styles, so the icons always render as solid colored shapes. */
.features-bar-icon-svg,
.features-bar-icon-svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
  stroke-width: 0.6 !important;
}

.features-bar-icon-svg {
  width: 28px;
  height: 28px;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.features-bar-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.features-bar-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--title-color, #1a1a1a);
  margin: 0 0 6px;
}

.features-bar-subtitle {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-color, #7a7a7a);
  margin: 0;
}

@media screen and (max-width: 749px) {
  .features-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
/* END_SECTION:features-bar */
/* START_SECTION:newsletter-section (INDEX:84) */
.newsletter-section {
  background: var(--nl-bg, #8B3FC9);
  padding: 64px 24px;
}

.newsletter-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--nl-title-color, #FFFFFF);
  margin: 0 0 16px;
  line-height: 1.25;
}

.newsletter-subheading {
  font-size: 16px;
  line-height: 1.6;
  color: var(--nl-text-color, #EAD9F7);
  margin: 0 0 32px;
}

.newsletter-subheading p {
  margin: 0;
}

.newsletter-form {
  margin: 0;
}

.newsletter-field {
  display: flex;
  align-items: center;
  background: var(--nl-input-bg, #FFFFFF);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--nl-input-text, #1A1A1A);
  padding: 12px 8px;
}

.newsletter-input::placeholder {
  color: #9a9a9a;
}

.newsletter-button {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  background: var(--nl-button-bg, #1E1E1E);
  color: var(--nl-button-text, #FFFFFF);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  padding: 14px 26px;
  transition: opacity 0.15s ease;
}

.newsletter-button:hover {
  opacity: 0.85;
}

.newsletter-message {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.newsletter-message--success {
  color: #FFFFFF;
}

.newsletter-message--error {
  color: #FFD9D9;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 749px) {
  .newsletter-section {
    padding: 48px 20px;
  }
  .newsletter-heading {
    font-size: 24px;
  }
  .newsletter-field {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 10px;
  }
  .newsletter-input {
    width: 100%;
    text-align: center;
    padding: 8px;
  }
  .newsletter-button {
    width: 100%;
  }
}
/* END_SECTION:newsletter-section */
/* START_SECTION:page-hero-section (INDEX:88) */
.page-hero-section {
  background: var(--hero-bg, #F1ECFB);
  padding: 56px 24px;
}

.page-hero-section--banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--hero-min-height, 320px);
  padding: 64px 24px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26,26,26,calc(var(--hero-overlay) * 0.55)) 0%, rgba(26,26,26,var(--hero-overlay)) 100%);
}

.page-hero-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--hero-title-color, #1A1A1A);
  margin: 0 0 16px;
  line-height: 1.2;
}

.page-hero-section--banner .page-hero-heading {
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}

.page-hero-subheading {
  font-size: 16px;
  line-height: 1.6;
  color: var(--hero-text-color, #7A7A7A);
  margin: 0;
}

.page-hero-section--banner .page-hero-subheading {
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.page-hero-subheading p {
  margin: 0;
}

@media screen and (max-width: 749px) {
  .page-hero-section {
    padding: 40px 20px;
  }
  .page-hero-section--banner {
    min-height: 240px;
    padding: 48px 20px;
  }
  .page-hero-heading {
    font-size: 30px;
  }
  .page-hero-subheading {
    font-size: 15px;
  }
}
/* END_SECTION:page-hero-section */
/* START_SECTION:testimonial-quotes-section (INDEX:129) */
.testimonial-quotes-section {
  background: #FFFFFF;
  padding: 64px 0;
}

.testimonial-quotes-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-quotes-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.testimonial-quotes-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tq-accent, #7B3FE4);
  margin: 0 0 12px;
}

.testimonial-quotes-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--tq-title-color, #1A1A1A);
  margin: 0 0 14px;
  line-height: 1.25;
}

.testimonial-quotes-subheading {
  font-size: 15px;
  line-height: 1.6;
  color: var(--tq-text-color, #7A7A7A);
  margin: 0;
}

.testimonial-quotes-subheading p {
  margin: 0;
}

.testimonial-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.testimonial-quote-card {
  border: 1px solid var(--tq-border-color, #ECECEC);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-stars {
  color: var(--tq-star-color, #A9895F);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-quote-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--tq-text-color, #5c5c5c);
  margin: 0 0 24px;
  flex: 1;
}

.testimonial-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-quote-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tq-avatar-bg, #EFE6FA);
  color: var(--tq-accent, #7B3FE4);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-name {
  margin: 0;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--tq-title-color, #1A1A1A);
}

.testimonial-quote-meta {
  margin: 2px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #2e9e5b;
}

.testimonial-quotes-footer {
  text-align: center;
  font-size: 13.5px;
  color: var(--tq-text-color, #9a9a9a);
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-quotes-footer p {
  margin: 0;
}

.testimonial-quotes-footer a {
  color: var(--tq-accent, #7B3FE4);
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 989px) {
  .testimonial-quotes-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 749px) {
  .testimonial-quotes-section {
    padding: 48px 0;
  }
  .testimonial-quotes-heading {
    font-size: 24px;
  }
}
/* END_SECTION:testimonial-quotes-section */
