/* Home Page */
.home-page {
    background: radial-gradient(ellipse at center, #2a003e 0%, #0b0b2c 100%);
    min-height: 100vh;
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 140%;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: 0;
    text-align: center;
    position: relative;
    display: block;
    padding: 0 20px;
}

.hero-title .subtitle {
    display: block;
    font-weight: 600;
    margin-top: 0;
    line-height: 140%;
}

.hero-title span:first-child {
    color: #B14CFF;
}

.hero-section {
    position: relative;
}

.hero-content {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1000px;
    background: radial-gradient(ellipse at center, rgba(177, 76, 255, 0.7) 0%, rgba(39, 20, 166, 0.3) 30%, transparent 70%);
    z-index: 0;
    filter: blur(80px);
}

.hero-title {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-title span:first-child {
    color: #B14CFF;
    background: none;
    -webkit-text-fill-color: #B14CFF;
    padding: 0 10px;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(177, 76, 255, 0.6) 0%, rgba(39, 20, 166, 0.15) 70%, transparent 100%);
    filter: blur(60px);
    z-index: -1;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 40px;
    max-width: 700px;
    padding: 0 20px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 172px;
    height: 53px;
    background: linear-gradient(90deg, #B14CFF 0%, #2714A6 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    padding: 16px 40px;
    border-radius: 80px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177, 76, 255, 0.3);
    text-align: center;
    vertical-align: middle;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(177, 76, 255, 0.4);
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* About Section (Section 2) */
.about-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: url('../images/dots-bg.png') no-repeat right bottom;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 0 0 auto;
    max-width: 40%;
}

.about-title-wrapper {
    position: relative;
}

.about-dots-image {
    position: absolute;
    top: -30px;
    left: -40px;
    max-width: 100px;
    height: auto;
    z-index: 1;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 24px;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.8);
    max-width: 367px;
    margin-bottom: 0;
}

.about-video {
    flex: 1;
    max-width: 55%;
    width: 100%;
}

.video-container {
    position: relative;
}

.video-dots-image {
    position: absolute;
    bottom: -60px;
    right: -80px;
    max-width: 150px;
    height: auto;
    z-index: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 2;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
}

/* Features Section (Section 3) */
.features-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
}

.section-dots-image {
    position: absolute;
    top: -26px;
    left: -40px;
    max-width: 80px;
    height: auto;
    z-index: 1;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 546px;
    width: 100%;
}

.section-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 610px;
    margin: 0 auto 60px;
}

/* Features Content */
.features-content {
    display: flex;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.features-list {
    width: 300px;
    flex: 0 0 300px;
    position: relative;
}

.feature-nav-arrows {
    position: absolute;
    top: -40px;
    left: -40px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.feature-nav-arrow {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 4px;
}

.arrow-icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid #9CA3AF;
    border-bottom: 2px solid #9CA3AF;
    transition: all 0.2s ease;
}

.feature-nav-prev .arrow-icon {
    transform: rotate(135deg);
    margin-right: 2px;
}

.feature-nav-next .arrow-icon {
    transform: rotate(-45deg);
}

.feature-nav-arrow:hover .arrow-icon {
    border-color: #ffffff;
}

.feature-arrow {
    width: 75px;
    margin: 0 20px;
    flex-shrink: 0;
}

.feature-arrow img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-item {
    padding: 20px 0;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px solid #6B7280;
    transition: all 0.3s ease;
    background: transparent;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff;
    margin: 0;
    padding-right: 30px;
    position: relative;
    transition: color 0.3s ease;
}

.feature-item.active .feature-title {
    color: #DCB0FF;
}

.feature-title:after {
    content: none;
}

.feature-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin: 0;
    padding-right: 30px;
}

.feature-item.active .feature-description {
    max-height: 200px;
    margin-top: 12px;
}

.feature-image {
    flex: 1;
    position: relative;
    border-radius: 29px;
    overflow: visible;
    height: 400px;
    padding: 4px;
    background: linear-gradient(100.78deg, #DCB0FF 1.38%, #9D2AF3 91.95%);
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    background: rgba(177, 76, 255, 1);
    border-radius: 29px;
    z-index: 1;
}

.light-effect-image {
    position: absolute;
    bottom: -110px;
    right: -113px;
    z-index: 0;
    pointer-events: none;
    max-width: 300px;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 4px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f1f;
    border-radius: 25px;
    z-index: 2;
}

.image-container.active {
    opacity: 1;
    z-index: 2;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}



/* Steps Container */
.steps-container {
    width: 990px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Steps Header - Phần số và tiêu đề */
.steps-header {
    width: 100%;
    margin: 0 auto 0; /* Đã bỏ margin-bottom */
    padding: 20px;
    text-align: left;
    position: relative;
    max-width: 990px;
    left: -140px;
}

.step-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding-left: 20px;
}

/* Steps Slider - Chỉ chứa hình ảnh */
.steps-slider {
    width: 990px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.step-slide {
    width: 990px !important; /* Force width */
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    outline: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 2px solid #B14CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 2;
    background: #0b0b2c;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    margin: 0 0 24px 0;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.step-image-container {
    width: 950px; /* Giảm chiều rộng để tạo khoảng cách giữa các slide */
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    border-radius: 29px;
    overflow: hidden;
    position: relative;
    padding: 4px;
    background: linear-gradient(135deg, #B14CFF 0%, #7B2CBF 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

/* Media queries cho tablet */
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .step-image-container {
        width: 100%;
        max-width: 600px;
        height: 300px;
        margin: 0 auto;
    }
    
    .step-slide {
        width: 100% !important;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .steps-slider {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Media queries cho mobile */
@media screen and (max-width: 767px) {
    .step-image-container {
        width: 288px;
        height: 144px;
        max-height: 144px;
        padding: 2px;
        border-radius: 15px;
        margin: 0 auto;
    }
    
    .step-slide {
        width: 288px !important;
        padding: 0;
        margin: 0 auto;
    }
    
    .steps-slider {
        width: 288px;
        padding: 0;
        margin: 0 auto;
    }
    
    .step-image {
        height: 100%;
        object-fit: cover;
    }
    
    /* Điều chỉnh phần số và tiêu đề trên mobile */
    .steps-header {
        left: 0;
        padding: 10px 20px;
        text-align: left;
    }
    
    .step-info {
        padding-left: 0;
        align-items: flex-start;
    }
    
    .step-number {
        width: 46px !important;
        height: 46px !important;
        font-size: 18px !important;
        margin-left: 0;
    }
}

.step-image-container::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #0f0f1f;
    border-radius: 25px;
    z-index: 1;
}

.step-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 25px;
    z-index: 2;
}

/* Slick slider overrides */
.slick-prev,
.slick-next {
    width: 24px;
    height: 24px;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slick-prev { 
    left: -60px; 
}

.slick-next { 
    right: -60px; 
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev .arrow-icon,
.slick-next .arrow-icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid #9CA3AF;
    border-bottom: 2px solid #9CA3AF;
    transition: all 0.2s ease;
}

.slick-prev .arrow-icon {
    transform: rotate(135deg);
    margin-right: 2px;
}

.slick-next .arrow-icon {
    transform: rotate(-45deg);
}

.slick-prev:hover .arrow-icon,
.slick-next:hover .arrow-icon {
    border-color: #ffffff;
}

/* Custom Slick Dots */
.slick-dots {
    bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
    position: relative;
    z-index: 10;
    height: 6px;
}

.slick-dots li {
    width: 6px !important; /* Fixed width for all dots */
    height: 6px;
    margin: 0 2px !important; /* Adjust spacing between dots */
    padding: 0;
    display: flex;
    align-items: center;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Reset default slick dots */
.slick-dots li button:before {
    content: '' !important;
    display: block !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: #9CA3AF !important;
    opacity: 1 !important;
    color: transparent !important;
    font-family: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
}

/* Active dot */
.slick-dots li.slick-active {
    width: 70px !important;
}

.slick-dots li.slick-active button:before {
    width: 70px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background-color: #9D2AF3 !important;
}

/* Slider Buttons */
.slider-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px; /* Tăng từ 40px lên 60px */
}

.download-button {
    display: inline-block;
    width: 182px;
    height: 45px;
    padding: 12px 30px;
    background: linear-gradient(90deg, #B14CFF 0%, #7B2CBF 100%);
    color: white;
    text-decoration: none;
    border-radius: 80px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 21px; /* 45px - 24px padding */
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 130%;
    color: white !important;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(177, 76, 255, 0.3);
    color: white !important;
    text-decoration: none !important;
}

.guide-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #DCB0FF;
    text-decoration: none !important;
    transition: none;
}

.guide-link:hover {
    color: #DCB0FF !important;
    text-decoration: none !important;
}

.guide-link .double-arrow {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    width: 24px;
    height: 16px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.guide-link .double-arrow:before,
.guide-link .double-arrow:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #DCB0FF;
    border-right: 2px solid #DCB0FF;
    transform: translateY(-50%) rotate(45deg);
}

.guide-link .double-arrow:before {
    left: 0;
}

.guide-link .double-arrow:after {
    left: 10px;
}

.guide-link:hover .double-arrow {
    transform: translateX(4px);
}

.slick-dots li.slick-active button {
    width: 70px;
}

.slick-dots li.slick-active button:before {
    width: 70px;
    height: 4px;
    border-radius: 2px;
    background: #9D2AF3;
    opacity: 1;
}

/* Section 5: Innocody Choice */
.choice-section {
    padding: 50px 0;
    position: relative;
    color: #FFFFFF;
}

.choice-section .section-header {
    margin-bottom: 60px;
    text-align: left;
    max-width: 100%;
    position: relative;
}

.choice-section .section-title-wrapper {
    position: relative;
    display: inline-block;
}

.choice-section .section-dots-image {
    position: absolute;
    top: 10%;
    left: 23px;
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
    pointer-events: none;
}

.choice-section .section-dots-image img {
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 0.5;
}

.choice-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 140%;
    margin: 0 0 20px 0;
    color: #FFFFFF;
    text-align: left;
    max-width: 678px;
    display: block;
}

.choice-section .section-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0;
    text-align: left;
}

/* Features Slider */
.features-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 100px;
    margin: 0 -15px;
}

.features-slider {
    position: relative;
    padding: 0 15px;
    margin: 0 -15px;
}

.features-slider .slick-list {
    overflow: visible;
    padding: 0 15px 0 0 !important;
}

.features-slider .slick-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding: 0 15px;
}

.features-slider .slick-slide.slick-active {
    opacity: 1;
}

.features-slider .slick-track {
    display: flex !important;
}

.features-slider .slick-slide {
    height: inherit !important;
    display: flex !important;
}

.features-slider .slick-slide > div {
    height: 100%;
    display: flex !important;
}

.feature-slide {
    padding: 0 15px;
    outline: none;
}

.feature-card {
    background: #1A1A3F;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(177, 76, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://innocody.ai/wp-content/uploads/2025/06/d5c34a73985e6a8e9fcb2fa2f71b67de44b79360.png') no-repeat center/cover;
    opacity: 1;
    z-index: 0;
}

.feature-icon {
    width: 145px;
    height: 145px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.feature-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0 0;
    flex: 1;
}

/* Slick slider overrides for features */
.features-slider .slick-prev,
.features-slider .slick-next {
    width: 24px;
    height: 24px;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    margin-top: 30px;
}

.features-slider .slick-prev { 
    left: 20px;
}

.features-slider .slick-next { 
    left: 70px;
    right: auto;
}

.features-slider .slick-prev:before,
.features-slider .slick-next:before {
    display: none;
}

.features-slider .slick-prev .arrow-icon,
.features-slider .slick-next .arrow-icon {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid #9CA3AF;
    border-bottom: 2px solid #9CA3AF;
    transition: all 0.2s ease;
}

.features-slider .slick-prev .arrow-icon {
    transform: rotate(135deg);
    margin-right: 2px;
}

.features-slider .slick-next .arrow-icon {
    transform: rotate(-45deg);
}

.features-slider .slick-prev:hover .arrow-icon,
.features-slider .slick-next:hover .arrow-icon {
    border-color: #ffffff;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .features-slider .slick-prev {
        left: -20px;
    }
    
    .features-slider .slick-next {
        right: -20px;
    }
}

@media (max-width: 991px) {
    .features-slider {
        padding: 20px 0 50px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .feature-icon {
        width: 117px;
        height: 117px;
        margin-top: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    .features-slider {
        margin: 0 -10px;
        padding: 20px 0 40px;
    }
    
    .feature-slide {
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .features-slider .slick-prev,
    .features-slider .slick-next {
        display: none !important;
    }
}

/* Responsive styles for Section 5 */
@media screen and (max-width: 767px) {
    .choice-section {
        padding: 30px 20px;
    }
    
    .choice-section .section-header {
        text-align: center;
        margin: 0 auto;
    }
    
    .choice-section .section-title {
        font-size: 28px;
        line-height: 120%;
        text-align: center;
    }
    
    .choice-section .section-description {
        font-size: 16px;
        line-height: 140%;
        text-align: center;
        margin: 0 auto;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 50px 0;
    position: relative;
    background: transparent;
}

.how-it-works-section .section-header {
    max-width: 800px;
    margin: 0 auto 20px;
}

.how-it-works-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.how-it-works-section .section-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .features-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .features-list {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .feature-arrow {
        display: none;
    }
    
    .feature-image {
        height: 300px;
        width: 100%;
        margin: 30px 0 0 0;
        overflow: visible;
    }
    
    .image-container {
        position: relative;
        height: 100%;
        margin: 4px;
        opacity: 0;
        display: none;
    }
    
    .image-container.active {
        opacity: 1;
        z-index: 2;
        display: flex;
    }
    
    .image-container img {
        max-height: 300px;
        height: auto;
    }
    
    .feature-nav-arrows {
        left: 20px;
    }
    
    .light-effect-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-section,
    .how-it-works-section {
        padding: 50px 0;
    }
    
    .how-it-works-section .section-title {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .how-it-works-section .section-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .section-dots-image {
        display: none;
    }
    
    .feature-item {
        padding: 16px 20px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-image {
        height: 300px;
    }
    
    .hero-section {
        padding: 100px 0 45px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-button {
        font-size: 16px;
        padding: 14px 32px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text,
    .about-video {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .about-dots-image,
    .video-dots-image {
        display: none;
    }
    
    .about-title {
        font-size: 30px;
        text-align: left;
    }
    
    .video-wrapper {
        margin-top: 20px;
        width: 100%;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-button {
        width: 100%;
        text-align: center;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .about-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .video-wrapper {
        margin-top: 20px;
        width: 100%;
        display: block;
    }
    
    .about-video {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
    
    .about-text {
        width: 100%;
    }
}