.slider-container {
    margin-top: 60px;
    position: relative;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 130px 5px 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 80px;
}

.slide {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    cursor: pointer;
}

.slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: transform 0.2s ease;
}

.slide-content:hover {
    transform: scale(1.01);
}

.slide-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.slide-image:hover {
    transform: scale(1.03);
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.slide-image img:hover {
    transform: scale(1.05);
}

.slide-text {
    flex: 1.5;
    transition: transform 0.3s ease;
}

.slide-text:hover {
    transform: translateX(5px);
}

.slide-text h4 {
    font-size: 1.5rem;
    color: #118ab2;
    margin-bottom: 16px;
}

.slide-text p {
    color: #4a6572;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-btn:hover {
    background: #06d6a0;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(6, 214, 160, 0.6);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d1e8ff;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.indicator:hover {
    transform: scale(1.2);
}

.indicator.active {
    background: #06d6a0;
}

.dream-loader {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loader-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader-bg {
    fill: none;
    stroke: #e0f7fa;
    stroke-width: 6;
}

.loader-progress {
    fill: none;
    stroke: #06d6a0;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.4s ease;
    filter: drop-shadow(0 0 6px rgba(6, 214, 160, 0.7));
}

.loader-percent {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 700;
    color: #073b4c;
    text-shadow: 0 0 4px rgba(6, 214, 160, 0.5);
    font-family: 'Inter', sans-serif;
}

.promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef7ff, #f0f9ff);
    position: relative;
    overflow: hidden;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.promo-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.promo-image:hover {
    transform: scale(1.02);
}

.promo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.promo-title {
    font-size: 2.2rem;
    color: #073b4c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.promo-description {
    font-size: 1.1rem;
    color: #4a6572;
    margin-bottom: 24px;
    max-width: 550px;
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #06d6a0, #118ab2);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow:
        0 4px 15px rgba(6, 214, 160, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.25);
    animation: pulse 2s infinite;
    z-index: 2;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.promo-badge:hover {
    transform: scale(1.1);
}

.promo-features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    position: relative;
}

.promo-features li {
    background: rgba(6, 214, 160, 0.08);
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
    color: #073b4c;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.25s ease;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(6, 214, 160, 0.15);
    cursor: default;
    position: relative;
}

.promo-features li:hover {
    background: rgba(6, 214, 160, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.promo-features li i {
    color: #06d6a0;
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    margin-top: 2px;
}

.feature-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 325px;
    background: #ffffff;
    color: #073b4c;
    padding: 10px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    pointer-events: none;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tooltip-illustration {
    width: 120px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.tooltip-text {
    padding: 5px;
    flex: 1;
    overflow-wrap: break-word;
}

.promo-features li:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.feature-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.promo-testimonial {
    background: rgba(255, 255, 255, 0.6);
    padding: 16px;
    border-radius: 14px;
    margin: 24px 0;
    font-style: italic;
    font-size: 0.95rem;
    color: #4a6572;
    border-left: 4px solid #06d6a0;
}

.promo-testimonial cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-weight: 600;
    color: #118ab2;
}

.promo-deco {
    position: absolute;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.deco-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.deco-2 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    right: 8%;
    animation-delay: -5s;
}

.deco-3 {
    width: 30px;
    height: 30px;
    top: 40%;
    right: 15%;
    animation-delay: -10s;
}