.insights-header {
    margin-bottom: 4rem;
}

.insights-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.insight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.swiper-slide:hover .insight-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.insights-slider {
    padding: 2rem 0 6rem;
    height: 700px; /* Increased overall height */
}

.swiper-slide {
    height: 600px; /* Much taller slides */
    padding: 1rem;
}

.price__item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    height: 100%;
    min-height: 550px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

/* Adjust font sizes and spacing */
.price__item h3.fs-2 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price__item p.fs-5 {
    font-size: 1.1rem !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Center all text by default */
.features__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Left align only list items */
.info__list {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.price__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff9d, #00b8ff);
}

.features__content {
    max-width: 500px; /* Increased max-width */
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Colorful icons */
.insight-icon {
    width: 100px; /* Bigger icons */
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 2.5rem;
}

/* Different colors for each slide */
.swiper-slide:nth-child(1) .insight-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.swiper-slide:nth-child(2) .insight-icon {
    background: linear-gradient(135deg, #00ff9d, #00b8ff);
}

.swiper-slide:nth-child(3) .insight-icon {
    background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.swiper-slide:nth-child(4) .insight-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.swiper-slide:hover .insight-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Better styled content */
.info__list ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.info__list ul li {
    position: relative;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.info__list ul li:before {
    content: "→";
    position: absolute;
    left: 0.5rem;
    color: #00ff9d;
}

.info__list ul li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Improved stat comparison */
.stat-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.stat-item h4 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item.highlight span {
    background: linear-gradient(90deg, #00ff9d, #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress visualization */
.filter-visualization {
    margin: 2rem 0;
}

.progress-stack {
    margin: 2rem 0;
}

.progress {
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, #00ff9d, #00b8ff);
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
    /* progressStripes animation removed */
}

/* progressStripes keyframes and ::after pseudo-element removed */

/* Navigation improvements */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.5rem;
    color: #fff;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    /* pulseAnimation removed */
}

/* pulseAnimation keyframes removed */

.insights-slider .swiper-pagination {
    bottom: 0;
}

.insights-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.insights-slider .swiper-pagination-bullet-active {
    background: #fff;
}

.insights-slider .swiper-button-prev,
.insights-slider .swiper-button-next {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.insights-slider .swiper-button-prev:hover,
.insights-slider .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.insights-slider .swiper-button-prev:after,
.insights-slider .swiper-button-next:after {
    font-size: 1.2rem;
}

.insights-slider {
    padding: 2rem 0 4rem;
    height: 600px; /* Increased height */
}

.swiper-slide {
    height: 500px; /* Fixed height for slides */
}

.price__item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    height: 100%;
    min-height: 500px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 1rem;
}

.features__content {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.info__list ul {
    list-style: none;
    padding: 0;
}

.info__list ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.info__list ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ff9d;
}

.stat-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
}

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

.stat-item h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
}

.stat-item.highlight span {
    color: #00ff9d;
}

.price__item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-comparison {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

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

.stat-item h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.stat-item.highlight span {
    color: #00ff9d;
}

.filter-visualization .progress {
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.filter-visualization .progress-bar {
    background: linear-gradient(90deg, #00ff9d, #00b8ff);
    transition: width 1s ease;
}

.trade-replay-wrapper {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(90deg, #00ff9d, #00b8ff);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}
