.hero-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(79,70,229,0.7) 0%, rgba(147,51,234,0.65) 100%), url(/static/core/images/hero/hero-01.jpg) center center no-repeat;
    background-size: cover;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 75vh;
    justify-content: center;
    align-items: center;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }

  .theme-christmas .hero-content {
    z-index: 3;
    overflow: visible;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-top: 0;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: white;
    text-shadow: 0 0 5px rgba(218, 165, 32, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-title-prefix,
  .hero-title-suffix {
    display: inline-block;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-title-prefix.desktop {
    display: inline-block;
  }

  .hero-title-prefix.mobile {
    display: none;
  }

  .hero-title-cycling {
    display: inline-block;
    height: 1.2em;
    text-align: center;
    margin: 0 -0.5rem;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out;
    min-width: 200px;
    vertical-align: top;
    white-space: nowrap;
    line-height: 1.2;
    overflow: visible;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .hero-cta {
    color: white;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }
  
  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
  }
  
  .demo-section {
    margin-bottom: 5rem;
    text-align: center;
  }
  
  .demo-container {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .demo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6, var(--primary));
  }
  
  .demo-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 2rem 0;
    border: 1px solid var(--border);
  }
  
  .demo-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    border: 2px dashed var(--border);
    color: var(--text-muted);
    font-size: 1.1rem;
  }
  
  .demo-video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
  }
  
  .demo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    margin-top: -2px
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
  }
  
  .video-overlay.playing {
    opacity: 0;
    pointer-events: none;
  }
  
  .play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79,70,229,0.4);
  }
  
  .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(79,70,229,0.5);
  }
  
  .play-button svg {
    width: 42px;
    height: 42px;
    fill: white;
  }
  
  .video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .mute-button {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .mute-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
  }
  
  .mute-button svg {
    width: 20px;
    height: 20px;
    fill: white;
  }
  
  .mute-button.muted svg {
    fill: #ef4444;
  }
  
  .features-section {
    margin-bottom: 5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-base);
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    border-radius: 2px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .feature-card {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .feature-card:hover::before {
    transform: scaleX(1);
  }
  
  .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-base);
  }
  
  .feature-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  .pricing-section {
    margin-bottom: 5rem;
  }

  .pricing-note {
    margin-top: 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-weight: lighter;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .pricing-card {
    background: var(--background-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  
  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .pricing-card:hover::before {
    transform: scaleX(1);
  }
  
  .pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(79,70,229,0.15);
    transform: scale(1.05);
    overflow: visible;
  }
  
  .pricing-card.featured::before {
    transform: scaleX(1);
  }
  
  .pricing-card.featured::after {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(79,70,229,0.3);
  }
  
  .plan-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-base);
  }
  
  .plan-price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }
  
  .plan-period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  
  .plan-features li {
    padding: 0.75rem 0;
    color: var(--text-base);
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
  }
  
  .plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .plan-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
  }

  .plan-button:not(.secondary) {
    top: -15px;
    position: relative;
  }
  
  .plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,0.3);
  }

  .cta-button {
    background: linear-gradient(135deg, rgba(79, 70, 229, .9), rgba(139, 92, 246, .8));
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79,70,229,0.3);
  }
  
  .plan-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .plan-button.secondary:hover {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    border-color: transparent;
  }
  
  .faq-section {
    margin-bottom: 5rem;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary);
  }
  
  .faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(79,70,229,0.15);
  }
  
  .faq-question {
    background: transparent;
    border: none;
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .faq-question:hover {
    background: rgba(79,70,229,0.02);
  }
  
  .faq-question::after {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(79,70,229,0.02);
  }
  
  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
  }
  
  .faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, .8) 0%, rgba(79,70,229,0.05) 100%), url(/static/core/images/hero/hero-02.jpg) top center no-repeat;
    background-size: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234f46e5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-base);
  }
  
  .cta-description {
    font-size: 1.2rem;
    color: var(--text-base);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  
  .stats-section {
    margin: 4rem 0;
    text-align: center;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  @media (max-width: 1000px) {  
    .hero-title {
      font-size: 2.8rem;
    }
  }

  @media (max-width: 800px) {

    .hero-title {
      font-size: 2.8rem;
      flex-direction: column;
      gap: 0.3rem;
      text-align: center;
    }

    .hero-title-prefix.desktop {
      display: none;
    }

    .hero-title-prefix.mobile {
      display: inline-block;
    }
    
    .hero-title-cycling {
      margin: 0.3rem 0;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .pricing-grid {
      grid-template-columns: 1fr;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .hero-title {
      font-size: 2.2rem;
      gap: 0.2rem;
    }
    
    .hero-title-cycling {
      margin: 0.2rem 0;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.9rem;
    }
  }

  /* Christmas Theme - Snow Animation */
  .theme-christmas .hero-section {
    position: relative;
    overflow: hidden;
  }

  /* Seamless Snow Animation - Multiple Layers with Different Sizes */
  .theme-christmas .hero-section::before,
  .theme-christmas .hero-section::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: 
      /* Small snowflakes */
      radial-gradient(circle at 20% 50%, white 0.5px, transparent 0.5px),
      radial-gradient(circle at 40% 20%, white 0.5px, transparent 0.5px),
      radial-gradient(circle at 60% 80%, white 0.5px, transparent 0.5px),
      radial-gradient(circle at 80% 40%, white 0.5px, transparent 0.5px),
      radial-gradient(circle at 30% 70%, white 0.5px, transparent 0.5px),
      radial-gradient(circle at 70% 10%, white 0.5px, transparent 0.5px),
      /* Medium snowflakes */
      radial-gradient(circle at 10% 30%, white 1px, transparent 1px),
      radial-gradient(circle at 90% 60%, white 1px, transparent 1px),
      radial-gradient(circle at 50% 90%, white 1px, transparent 1px),
      radial-gradient(circle at 15% 15%, white 1px, transparent 1px),
      radial-gradient(circle at 85% 85%, white 1px, transparent 1px),
      radial-gradient(circle at 25% 45%, white 1px, transparent 1px),
      /* Large snowflakes */
      radial-gradient(circle at 75% 25%, white 1.5px, transparent 1.5px),
      radial-gradient(circle at 45% 65%, white 1.5px, transparent 1.5px),
      radial-gradient(circle at 55% 35%, white 1.5px, transparent 1.5px);
    background-size: 
      200px 200px,
      150px 150px,
      180px 180px,
      160px 160px,
      190px 190px,
      170px 170px,
      200px 200px,
      140px 140px,
      220px 220px,
      130px 130px,
      210px 210px,
      175px 175px,
      165px 165px,
      185px 185px,
      155px 155px;
    background-position: 
      0% 0%,
      10% 10%,
      20% 20%,
      30% 30%,
      40% 40%,
      50% 50%,
      60% 60%,
      70% 70%,
      80% 80%,
      90% 90%,
      5% 15%,
      15% 25%,
      25% 35%,
      35% 45%,
      45% 55%;
    background-repeat: repeat;
    animation: snow 20s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
  }

  .theme-christmas .hero-section::after {
    animation: snow 15s linear infinite;
    opacity: 0.6;
    background-position: 
      5% 0%,
      15% 10%,
      25% 20%,
      35% 30%,
      45% 40%,
      55% 50%,
      65% 60%,
      75% 70%,
      85% 80%,
      95% 90%,
      10% 15%,
      20% 25%,
      30% 35%,
      40% 45%,
      50% 55%;
  }

  @keyframes snow {
    0% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(15px, 25%);
    }
    50% {
      transform: translate(-10px, 50%);
    }
    75% {
      transform: translate(20px, 75%);
    }
    100% {
      transform: translate(-5px, 100%);
    }
  }

  @keyframes snow2 {
    0% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(-12px, 25%);
    }
    50% {
      transform: translate(18px, 50%);
    }
    75% {
      transform: translate(-8px, 75%);
    }
    100% {
      transform: translate(10px, 100%);
    }
  }

  .theme-christmas .hero-section::after {
    animation: snow2 15s linear infinite;
    opacity: 0.6;
    background-position: 
      5% 0%,
      15% 10%,
      25% 20%,
      35% 30%,
      45% 40%,
      55% 50%,
      65% 60%,
      75% 70%,
      85% 80%,
      95% 90%,
      10% 15%,
      20% 25%,
      30% 35%,
      40% 45%,
      50% 55%;
  }

  