/* ========================================
   REVAMPED SECTIONS - WORLD-CLASS UI
   Special Prefix: rw- (Revamp Website)
   ======================================== */

/* ========================================
   SECTION ONE: System Showcase
   Prefix: rw-system-
   ======================================== */

.rw-system-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #fdfdfd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.rw-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230ac285" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: rw-wave-animation 20s ease-in-out infinite;
}

@keyframes rw-wave-animation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.rw-system-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.rw-system-headline {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    animation: rw-fade-in-up 0.8s ease-out;
}

.rw-system-subheadline {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 24px;
    animation: rw-fade-in-up 0.8s ease-out 0.2s backwards;
}

.rw-system-highlight {
    background: linear-gradient(120deg, #0ac285 0%, #02984f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.rw-system-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(10, 194, 133, 0.2);
    z-index: -1;
}

.rw-system-description {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: rw-fade-in-up 0.8s ease-out 0.4s backwards;
}

.rw-system-video-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    animation: rw-fade-in-up 0.8s ease-out 0.6s backwards;
}

.rw-system-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.6s ease;
}

.rw-system-video-wrapper:hover {
    transform: perspective(1000px) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(10, 194, 133, 0.2);
}

.rw-system-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.rw-system-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 194, 133, 0.03) 0%, rgba(2, 152, 79, 0.03) 100%);
    pointer-events: none;
}

@keyframes rw-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECTION TWO: HR Testimonials
   Prefix: rw-hr-
   ======================================== */

.rw-hr-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #e6f7ef 0%, #f0fdf4 50%, #ffffff 100%);
    position: relative;
}

.rw-hr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(10, 194, 133, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.rw-hr-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.rw-hr-headline {
    font-size: 42px;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 8px;
    letter-spacing: -1px;
    animation: rw-fade-in-up 0.8s ease-out;
}

.rw-hr-subheadline {
    font-size: 28px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 20px;
    animation: rw-fade-in-up 0.8s ease-out 0.2s backwards;
}

.rw-hr-highlight {
    background: linear-gradient(120deg, #0ac285 0%, #02984f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.rw-hr-description {
    font-size: 18px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: rw-fade-in-up 0.8s ease-out 0.4s backwards;
}

.rw-hr-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.rw-hr-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: rw-fade-in-up 0.8s ease-out backwards;
}

.rw-hr-card:nth-child(1) { animation-delay: 0.1s; }
.rw-hr-card:nth-child(2) { animation-delay: 0.2s; }
.rw-hr-card:nth-child(3) { animation-delay: 0.3s; }
.rw-hr-card:nth-child(4) { animation-delay: 0.4s; }

.rw-hr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #0ac285 0%, #02984f 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rw-hr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(10, 194, 133, 0.2);
}

.rw-hr-card:hover::before {
    height: 100%;
}

.rw-hr-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.rw-hr-star {
    color: #fbbf24;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.rw-hr-feedback {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.rw-hr-feedback::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    line-height: 1;
    color: #e2e8f0;
    font-family: Georgia, serif;
}

.rw-hr-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rw-hr-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
}

.rw-hr-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rw-hr-info {
    flex: 1;
}

.rw-hr-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 4px;
}

.rw-hr-title {
    font-size: 14px;
    color: #718096;
}

/* ========================================
   SECTION THREE: All Features
   Prefix: rw-features-
   ======================================== */

.rw-features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.rw-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.rw-features-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.rw-features-headline {
    font-size: 42px;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 8px;
    letter-spacing: -1px;
    animation: rw-fade-in-up 0.8s ease-out;
}

.rw-features-subheadline {
    font-size: 28px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 20px;
    animation: rw-fade-in-up 0.8s ease-out 0.2s backwards;
}

.rw-features-highlight {
    background: linear-gradient(120deg, #3e7bfa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.rw-features-description {
    font-size: 18px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: rw-fade-in-up 0.8s ease-out 0.4s backwards;
}

/* Horizontal Tabs - Timeline Style with Boxes */
.rw-features-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Arrow line passing through buttons */
.rw-features-tabs::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, #cbd5e0 0%, #cbd5e0 calc(100% - 20px), transparent calc(100% - 20px));
    z-index: 1;
}

/* Arrow head */
.rw-features-tabs::after {
    content: '';
    position: absolute;
    top: 32px;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 8px solid #cbd5e0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 1;
}

.rw-features-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 140px;
}

.rw-features-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rw-features-tab.active {
    border-color: #0ac285;
    background: #f0fdf9;
}

.rw-tab-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
}

.rw-features-tab.active .rw-tab-number {
    background-color: #0ac285;
    border-color: #0ac285;
    color: white;
}

.rw-tab-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    transition: color 0.3s;
    margin-bottom: 4px;
}

.rw-features-tab.active .rw-tab-name {
    color: #0ac285;
}

.rw-tab-count {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Tab Panels */
.rw-features-content {
    position: relative;
    z-index: 2;
}

.rw-features-tab-panel {
    display: none;
    animation: rw-fade-in-scale 0.5s ease-out;
}

.rw-features-tab-panel.active {
    display: block;
}

@keyframes rw-fade-in-scale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.rw-features-grid {
    display: grid;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.rw-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rw-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(10, 194, 133, 0.05) 0%, rgba(2, 152, 79, 0.05) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.rw-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #0ac285;
}

.rw-feature-card:hover::after {
    height: 100%;
}

.rw-feature-link-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    transition: all 0.3s ease;
    z-index: 2;
    text-decoration: none;
}

.rw-feature-link-icon:hover {
    background: #0ac285;
    border-color: #0ac285;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(10, 194, 133, 0.3);
}

.rw-feature-link-icon svg {
    width: 16px;
    height: 16px;
}

.rw-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.rw-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
}

.rw-feature-list li {
    font-size: 16px !important;
    color: #4a5568;
    line-height: 1.6;
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.rw-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #0ac285 0%, #02984f 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.rw-feature-users {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.rw-user-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rw-user-photo:not(:first-child) {
    margin-left: -12px;
}

.rw-user-count {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
    margin-left: 4px;
}

.rw-feature-video-cover {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rw-feature-video-cover:hover {
    transform: scale(1.02);
}

.rw-feature-video-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.rw-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.rw-feature-video-cover:hover .rw-video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.rw-video-play-icon svg {
    display: block;
}

/* Video Modal */
.rw-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rw-video-modal.active {
    display: flex;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    height: 100vh;
}

/* Section CTA */
.rw-section-cta {
    text-align: center;
    margin-top: 60px;
    animation: rw-fade-in-up 0.8s ease-out 0.8s backwards;
}

.rw-section-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rw-section-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 194, 133, 0.3);
}

.rw-section-cta .arrow {
    transition: transform 0.3s ease;
}

.rw-section-cta .btn:hover .arrow {
    transform: translateX(4px);
}

.rw-section-cta .cta-subtext {
    margin-top: 12px;
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.rw-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.rw-video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: rw-modal-slide-up 0.3s ease-out;
}

@keyframes rw-modal-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rw-video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.rw-video-modal-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

.rw-video-modal-close svg {
    color: #1a2b3c;
}

.rw-video-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 20px;
    padding-right: 50px;
}

.rw-video-modal-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
}

.rw-video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   SWIPER CUSTOMIZATION
   ======================================== */

/* Swiper Pagination Styling */
.swiper-pagination {
    position: relative !important;
    margin-top: 30px;
    bottom: auto !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #0ac285;
    width: 24px;
    border-radius: 5px;
}

.hr-pagination .swiper-pagination-bullet-active {
    background: #0ac285;
}

/* Desktop: Keep grid layout, disable swiper */
@media (min-width: 769px) {
    /* Completely disable Swiper styling on desktop */
    .hrSwiper,
    .featuresSwiper-preparation,
    .featuresSwiper-job-search,
    .featuresSwiper-application,
    .featuresSwiper-interview {
        overflow: visible !important;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hrSwiper .swiper-wrapper,
    .featuresSwiper-preparation .swiper-wrapper,
    .featuresSwiper-job-search .swiper-wrapper,
    .featuresSwiper-application .swiper-wrapper,
    .featuresSwiper-interview .swiper-wrapper {
        display: grid !important;
        transform: translate3d(0, 0, 0) !important;
        transition-property: none !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        z-index: 1 !important;
        box-sizing: content-box !important;
    }
    
    .rw-hr-cards-grid.swiper .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px !important;
    }
    
    .rw-features-grid.swiper .swiper-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
    }
    
    .hrSwiper .swiper-slide,
    .featuresSwiper-preparation .swiper-slide,
    .featuresSwiper-job-search .swiper-slide,
    .featuresSwiper-application .swiper-slide,
    .featuresSwiper-interview .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        position: relative !important;
        transition-property: none !important;
        flex-shrink: 1 !important;
    }
    
    .hrSwiper .swiper-pagination,
    .featuresSwiper-preparation .swiper-pagination,
    .featuresSwiper-job-search .swiper-pagination,
    .featuresSwiper-application .swiper-pagination,
    .featuresSwiper-interview .swiper-pagination {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .rw-features-grid.swiper .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile: Enable swiper */
@media (max-width: 768px) {
    .rw-hr-cards-grid.swiper,
    .rw-features-grid.swiper {
        overflow: hidden;
        padding-bottom: 50px;
        width: 100%;
    }
    
    .rw-hr-card.swiper-slide {
        max-width: 450px;
        margin-right: 16px;
    }
    
    .rw-feature-card.swiper-slide {
        margin-right: 16px;
    }
    
    /* Fix layout for tabs with fewer items */
    .rw-features-grid.swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
    }
    
    .swiper-pagination {
        margin-top: 20px;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .rw-system-headline {
        font-size: 32px;
    }
    
    .rw-hr-headline,
    .rw-features-headline {
        font-size: 36px;
    }
    
    .rw-system-subheadline {
        font-size: 32px;
    }
    
    .rw-hr-subheadline,
    .rw-features-subheadline {
        font-size: 24px;
    }
    
    .rw-section-cta {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {

    .rw-feature-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #0ac285;
}


    .rw-system-section,
    .rw-hr-section,
    .rw-features-section {
        padding: 80px 0;
    }
    
    .rw-system-headline {
        font-size: 28px;
    }
    
    .rw-hr-headline,
    .rw-features-headline {
        font-size: 32px;
        margin-bottom: 6px;
    }
    
    .rw-system-subheadline {
        font-size: 28px;
    }
    
    .rw-hr-subheadline,
    .rw-features-subheadline {
        font-size: 22px;
    }
    
    .rw-system-description,
    .rw-hr-description,
    .rw-features-description {
        font-size: 18px;
    }
    
    .rw-hr-card {
        padding: 24px;
    }
    
    .rw-features-tabs {
        max-width: 100%;
        padding: 0 5px;
        gap: 3px;
        overflow-x: visible;
        justify-content: space-between;
    }
    
    .rw-features-tabs::before {
        top: 20px;
        left: 3%;
        right: 3%;
    }
    
    .rw-features-tabs::after {
        top: 15px;
        right: 3%;
    }
    
    .rw-features-tab {
        min-width: 55px;
        max-width: 6rem;
        padding: 6px 3px;
        flex: 1;
    }
    
    .rw-tab-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    .rw-tab-name {
        font-size: 9px;
        line-height: 1.1;
        font-weight: 600;
    }
    
    .rw-tab-count {
        font-size: 7px;
    }
    
    .rw-feature-card {
        padding: 20px;
    }
    
    .rw-video-modal-content {
        padding: 24px;
    }
    
    .rw-video-modal-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .rw-system-headline {
        font-size: 24px;
    }
    
    .rw-hr-headline,
    .rw-features-headline {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .rw-system-subheadline {
        font-size: 24px;
    }
    
    .rw-hr-subheadline,
    .rw-features-subheadline {
        font-size: 20px;
    }
    


    

    
    .rw-tab-count {
        font-size: 10px;
    }
    
    .rw-hr-feedback {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .rw-hr-feedback::before {
        font-size: 40px;
    }
    
    .rw-video-modal {
        padding: 0 !important;
    }
    
    .rw-video-modal-content {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .rw-video-modal-title {
        display: none !important;
    }
    
    .rw-video-modal-wrapper {
        border-radius: 0 !important;
    }
    
    .rw-video-play-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .rw-section-cta {
        margin-top: 40px;
    }
    
    .rw-section-cta .btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}
