/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 431:0 Unexpected "<"

**/
<style>
  .results-timeline {
    background: linear-gradient(180deg, #ffffff 0%, #FAFAFA 100%);
    padding: 1rem 1rem;
    overflow: hidden;
  }
  
  .results-timeline__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .results-timeline__header {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .results-timeline__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF9E1B;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .results-timeline__title {
    font-family: 'Avenir Next Condensed', 'Avenir', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2C2A29;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .results-timeline__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: #2C2A29;
    opacity: 0.8;
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }
  
  .results-timeline__disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9375rem;
    color: #2C2A29;
    opacity: 0.7;
    font-style: italic;
  }
  
  .results-timeline__disclaimer svg {
    width: 18px;
    height: 18px;
    color: #73B4C0;
  }
  
  /* Journey Path Design */
  .journey-path {
    position: relative;
    margin-bottom: 4rem;
  }
  
  .journey-path__line {
    position: absolute;
    top: 100px;
    left: 5%;
    right: 5%;
    height: 6px;
    background: linear-gradient(90deg, #E0E0E0 0%, #73B4C0 50%, #FF9E1B 100%);
    border-radius: 10px;
    z-index: 0;
  }
  
  @media (max-width: 768px) {
    .journey-path__line {
      display: none;
    }
  }
  
  .journey-path__stages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .journey-path__stages {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
  }
  
  .stage-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
  }
  
  .stage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(115, 180, 192, 0.2);
    border-color: #73B4C0;
  }
  
  .stage-card--breakthrough {
    background: linear-gradient(135deg, #FAF1E8 0%, #ffffff 100%);
    border-color: #FF9E1B;
  }
  
  .stage-card--breakthrough:hover {
    border-color: #FF9E1B;
    box-shadow: 0 12px 24px rgba(255, 158, 27, 0.25);
  }
  
  .stage-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #73B4C0 0%, #70A2B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 16px rgba(115, 180, 192, 0.3);
    position: relative;
  }
  
  .stage-card--breakthrough .stage-card__icon {
    background: linear-gradient(135deg, #FF9E1B 0%, #e68a0f 100%);
    box-shadow: 0 6px 16px rgba(255, 158, 27, 0.4);
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  .stage-card__icon-number {
    font-family: 'Avenir Next Condensed', 'Avenir', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
  }
  
  .stage-card__week-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #73B4C0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 0.75rem;
  }
  
  .stage-card--breakthrough .stage-card__week-label {
    color: #FF9E1B;
  }
  
  .stage-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C2A29;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .stage-card__description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9375rem;
    color: #2C2A29;
    opacity: 0.8;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .stage-card__what-to-expect {
    background: #FAF1E8;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .stage-card__expect-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2C2A29;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .stage-card__expect-title svg {
    width: 16px;
    height: 16px;
    color: #FF9E1B;
  }
  
  .stage-card__expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .stage-card__expect-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #2C2A29;
    opacity: 0.85;
  }
  
  .stage-card__expect-item:last-child {
    margin-bottom: 0;
  }
  
  .stage-card__expect-item svg {
    width: 16px;
    height: 16px;
    color: #73B4C0;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .stage-card__progress {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #FAFAFA;
  }
  
  .stage-card__progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .stage-card__progress-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2C2A29;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .stage-card__progress-percentage {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #73B4C0;
  }
  
  .stage-card--breakthrough .stage-card__progress-percentage {
    color: #FF9E1B;
  }
  
  .stage-card__progress-bar {
    width: 100%;
    height: 8px;
    background: #FAFAFA;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .stage-card__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #73B4C0 0%, #70A2B8 100%);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
  }
  
  .stage-card--breakthrough .stage-card__progress-fill {
    background: linear-gradient(90deg, #FF9E1B 0%, #e68a0f 100%);
  }
  
  .stage-card__progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer-stage 2.5s infinite;
  }
  
  @keyframes shimmer-stage {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  /* Final CTA */
  .timeline-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: #FAF1E8;
    border-radius: 16px;
  }
  
  .timeline-cta__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2C2A29;
    margin-bottom: 1rem;
  }
  
  .timeline-cta__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: #2C2A29;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .timeline-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .timeline-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .timeline-cta__button--primary {
    background: #FF9E1B;
    color: #ffffff;
  }
  
  .timeline-cta__button--primary:hover {
    background: #e68a0f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 158, 27, 0.4);
  }
  
  .timeline-cta__button--secondary {
    background: transparent;
    color: #2C2A29;
    border: 2px solid #2C2A29;
  }
  
  .timeline-cta__button--secondary:hover {
    background: #2C2A29;
    color: #ffffff;
  }
  
  @media (max-width: 768px) {
    .results-timeline {
      padding: 3rem 1rem;
    }
    
    .results-timeline__title {
      font-size: 2.25rem;
    }
    
    .timeline-cta__buttons {
      flex-direction: column;
      align-items: stretch;
    }
    
    .timeline-cta__button {
      justify-content: center;
    }
  }
</style>
