
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}


.rs-cardsshelf {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.rs-cards-shelf-header {
    margin-bottom: 30px;
    padding: 0 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.rs-cards-shelf-mainheader {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.015em;
    color: var(--text-primary);
}

.rs-cards-shelf-secondaryheader {
    font-size: 40px;
    color: #999;
    font-weight: 600;
    margin-bottom: 0;
}

.rf-cards-scroller-container {
    position: relative;
    padding: 0 20px;
}

.rf-cards-scroller-content {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.rf-cards-scroller-content::-webkit-scrollbar {
    display: none;
}

.rf-ccard-item {
    flex: 0 0 auto;
    width: 320px;
    min-width: 320px;
}

.rf-ccard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
    cursor: default;
    border: 1px solid var(--card-border);
}

.rf-ccard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rf-ccard-img {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    overflow: hidden;
}

.rf-ccard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paddlenav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.paddlenav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.paddlenav-arrow.visible {
    display: flex;
}

.paddlenav-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.paddlenav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.paddlenav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #1d1d1d;
    fill: none;
}

.feature-image-card .feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-image-card .feature-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   AI SECTION
   ============================================ */

.ai-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-content {
    text-align: left;
}

.ai-screen {
    height: 400px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 16px;
    border: none;
    overflow: hidden;
}

.ai-screen img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ai-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ai-subtitle {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.3;
}

.highlight {
    color: #000000;
    font-style: italic;
}

.highlight-text {
    color: #000000;
    font-style: italic;
}

.ai-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
}

.ai-link {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ai-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

/* ============================================
   PRIVACY CARD SECTION
   ============================================ */

.privacy-card-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.privacy-card {
    background: white;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--card-border);
}

.privacy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon svg {
    width: 140px;
    height: 140px;
}

.privacy-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.privacy-content {
    display: flex;
    align-items: center;
}

.privacy-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.privacy-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.values-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--card-border-hover);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-link:hover {
    color: var(--primary-hover);
}

/* ============================================
   AI ASSISTANCE SECTION
   ============================================ */

.ai-assistance-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.ai-assistance-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.ai-assistance-link-text {
    margin-bottom: 60px;
}

.ai-assistance-link {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.ai-assistance-link:hover {
    color: var(--primary-hover);
}

.ai-assistance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ai-assistance-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.ai-assistance-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--card-border-hover);
}

.ai-assistance-icon {
    width: 48px;
    height: 48px;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-assistance-icon svg {
    width: 100%;
    height: 100%;
}

.ai-assistance-stat {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.ai-assistance-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.faq-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: center;
}

.faq-item {
    background: white;
    border: 1px solid var(--card-border-hover);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-header {
    padding: 24px;
    background: white;
    border: none;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-header:hover {
    background: #f9f7f5;
}

.faq-header.open {
    background: #f9f7f5;
}

.faq-icon {
    font-size: 24px;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-header.open .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    display: none;
    background: white;
    padding: 24px;
}

.faq-content.open {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   EXPLORE SECTION
   ============================================ */

.explore-section {
    padding: 80px 40px;
    text-align: center;
}

.explore-section h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.explore-section p {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
    font-weight: 400;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-explore {
    background: var(--dark-bg);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    background: var(--dark-bg);
    color: white;
    transform: scale(1.02);
}

/* ============================================
   IMAGE SECTION
   ============================================ */

.image-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.image-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
        text-align: left;
    }

    .features-grid,
    .values-grid,
    .ai-assistance-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .functionalities-section {
        padding: 60px 20px;
    }

    .features-carousel {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-image img {
        min-height: 60px;
    }

    .ai-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .ai-screen {
        height: 300px;
    }

    .privacy-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }

    .privacy-icon svg {
        width: 100px;
        height: 100px;
    }

    .privacy-icon img {
        width: 100px;
        height: 100px;
    }

    .privacy-text {
        font-size: 16px;
    }

    .ai-title {
        font-size: 36px;
    }

    .ai-subtitle {
        font-size: 24px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-header {
        padding: 20px;
        font-size: 15px;
    }

    .faq-content.open {
        padding: 20px;
    }

    .image-section {
        padding: 40px 20px;
    }

    .image-container {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .features-carousel {
        grid-template-columns: 1fr;
    }

    .feature-image img {
        min-height: 50px;
    }

    .ai-screen {
        height: 250px;
    }

    .section-title {
        font-size: 20px;
    }

    .image-section {
        padding: 30px 16px;
    }

    .image-container {
        border-radius: 12px;
    }
}

