/* ---------------- Global Reset ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* ---------------- Landing Page ---------------- */
.rc-landing {
    width: 100%;
    background: #ffffff;
}

.rc-nav {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rc-nav-container {
    max-width: 1960px;
    margin: 0 auto;
    padding: 0 40px;
}

.rc-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.rc-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.rc-logo-icon {
    display: none;
}

.rc-logo-text {
    font-size: 20px;
}

.rc-nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.rc-nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.rc-nav-links a:hover {
    color: #4a90e2;
}

.rc-btn-login {
    padding: 9px 22px;
    border: 2px solid #000000;
    border-radius: 8px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.rc-btn-login:hover {
    background: #000000;
    color: #ffffff;
}

/* Mobile Menu */
.rc-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.rc-mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #000000;
    margin: 5px 0;
    transition: all 0.3s;
}

.rc-mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rc-mobile-nav.rc-active {
    display: block;
}

.rc-mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.rc-mobile-nav li {
    margin-bottom: 20px;
}

.rc-mobile-nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    display: block;
    padding: 10px;
}

.rc-mobile-nav .rc-btn-login {
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Hero Section */
.rc-hero {
    background: white;
    padding: 80px 40px 100px;
    text-align: center;
}

.rc-container {
    max-width: 1960px;
    margin: 0 auto;
}

.rc-hero-content {
    max-width: 1960px;
    margin: 0 auto;
}

.rc-logo-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.rc-logo-icon-large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-brand-name {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
}

.rc-hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rc-hero-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 34px;
    line-height: 1.6;
    font-weight: 400;
}

.rc-btn-cta {
    display: inline-block;
    padding: 13px 36px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.3);
}

.rc-btn-cta:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Features Section */
.rc-features {
    padding: 80px 40px;
    background: #ffffff;
}

.rc-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 48px;
    text-align: center;
}

.rc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 58px;
    max-width: 1200px;
}

.rc-feature-card {
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rc-feature-card:hover {
    transform: none;
    box-shadow: none;
}

.rc-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.rc-icon-blue {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.rc-feature-content {
    flex: 1;
}

.rc-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.rc-feature-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    font-weight: 400;
}

/* ---------------- App / Dashboard ---------------- */
.rc-app-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    background: #f7f7f8;
}

.rc-app {
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.rc-sidebar {
    width: 260px;
    background: #1a1f2e;
    color: #fff;
    padding: 24px 20px;
}

.rc-sidebar h2 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.rc-sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.rc-sidebar nav li {
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.2s;
    color: #9ca3af;
    font-weight: 500;
    font-size: 14px;
}

.rc-sidebar nav li:hover {
    background: #252b3d;
    color: #fff;
}

.rc-sidebar nav li.rc-active {
    background: #3b82f6;
    color: #fff;
}

.rc-sidebar-footer {
    margin-top: 40px;
}

.rc-logout-btn {
    display: block;
    padding: 12px 16px;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 14px;
}

.rc-logout-btn:hover {
    background: #252b3d;
    color: #fff;
}

.rc-main {
    flex: 1;
    padding: 30px;
    background: #fff;
    min-height: 600px;
}

.rc-panel {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 24px;
    border-radius: 8px;
    min-height: 400px;
}

.rc-panel h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.rc-panel p {
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 14px;
}

.rc-panel button {
    padding: 10px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
}

.rc-panel button:hover {
    background: #2563eb;
}

/* ---------------- Dashboard Stats ---------------- */
.rc-dashboard h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.rc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rc-stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.rc-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.rc-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-stat-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.rc-stat-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.rc-stat-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.rc-stat-content {
    flex: 1;
}

.rc-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 4px;
}

.rc-stat-label {
    font-size: 13px;
    color: #6b7280;
}

/* Recent Activity */
.rc-recent-activity {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.rc-recent-activity h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.rc-activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rc-activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.rc-activity-icon {
    font-size: 22px;
}

.rc-activity-content {
    flex: 1;
}

.rc-activity-title {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.rc-activity-time {
    font-size: 12px;
    color: #6b7280;
}

/* ---------------- Empty & Error State ---------------- */
.rc-empty-state,
.rc-error,
.rc-loading {
    text-align: center;
    padding: 60px 20px;
}

.rc-empty-state svg,
.rc-error svg {
    margin-bottom: 20px;
}

.rc-empty-state p,
.rc-error p {
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 8px;
}

.rc-empty-state small {
    font-size: 13px;
    color: #6b7280;
}

.rc-error h3 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 12px;
}

.rc-btn-retry {
    padding: 10px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
}

.rc-btn-retry:hover {
    background: #2563eb;
}

.rc-spinner {
    border: 3px solid #f3f4f6;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ---------------- Pricing Section ---------------- */
.rc-pricing {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
}

.rc-pricing .rc-section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.rc-pricing-intro {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.rc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.rc-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.rc-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.rc-pricing-card.rc-featured {
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.rc-pricing-card.rc-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.rc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.rc-pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    text-align: center;
}

.rc-pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1;
}

.rc-price-period {
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
}

.rc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.rc-pricing-features li {
    padding: 14px 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 28px;
}

.rc-pricing-features li:last-child {
    border-bottom: none;
}

.rc-pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 18px;
}

.rc-pricing-card .rc-btn-cta {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    display: block;
}

.rc-pricing-card .rc-btn-cta:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.rc-pricing-note {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ---------------- Contact Section ---------------- */
.rc-contact {
    padding: 80px 40px;
    background: #ffffff;
}

.rc-contact .rc-section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
    letter-spacing: -1px;
}

.rc-contact-intro {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.rc-contact-form {
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rc-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.3px;
}

.rc-contact-form input,
.rc-contact-form textarea,
.rc-contact-form select {
    padding: 14px 16px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    color: #111827;
    width: 100%;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.rc-contact-form input:focus,
.rc-contact-form textarea:focus,
.rc-contact-form select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.rc-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.rc-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.rc-contact-form button {
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.rc-contact-form button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.rc-contact-info {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 20px;
}

.rc-contact-item {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 250px;
}

.rc-contact-item strong {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.3px;
}

.rc-contact-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
/* ---------------- AI Chatbot ---------------- */
.rc-ai-connect .rc-section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
    letter-spacing: -1px;
}

.rc-ai-intro {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

#romoconnect-chat {
    width: 90%;               /* Flexible width for responsiveness */
    max-width: 600px;         /* Optional: limits size on large screens */
    min-width: 280px;         /* Optional: avoids shrinking too much on small screens */
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 20px auto;
}

#romoconnect-chat h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
    text-align: center;
}

#romoconnect-chat-log {
    height: 220px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 8px;
    background: #f9fafb;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

#romoconnect-chat-log div {
    margin-bottom: 8px;
}

#romoconnect-chat-log strong {
    color: #111827;
}

#romoconnect-user-message {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    outline: none;
    transition: border-color 0.2s;
}

#romoconnect-user-message:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

#romoconnect-send {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    background: #3b82f6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

#romoconnect-send:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

@media screen and (max-width: 480px) {
    #romoconnect-chat {
        width: 95%;
        padding: 12px;
    }
    #romoconnect-chat-log {
        height: 180px;
    }
}


/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
    .rc-hero-title {
        font-size: 32px;
    }

    .rc-brand-name {
        font-size: 28px;
    }

    .rc-section-title {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .rc-features-grid {
        gap: 36px 50px;
    }

    .rc-hero-title {
        font-size: 30px;
    }

    .rc-brand-name {
        font-size: 26px;
    }

    .rc-section-title {
        font-size: 24px;
    }

    .rc-feature-title {
        font-size: 17px;
    }

    .rc-feature-icon {
        width: 48px;
        height: 48px;
    }

    .rc-feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .rc-pricing .rc-pricing-grid,
    .rc-contact .rc-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rc-nav-container {
        padding: 0 20px;
    }

    .rc-nav-content {
        height: 60px;
    }

    .rc-logo-text {
        font-size: 18px;
    }

    .rc-nav-links,
    .rc-btn-login {
        display: none;
    }

    .rc-mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .rc-mobile-nav {
        z-index: 1000;
    }

    .rc-hero {
        padding: 50px 20px 70px;
    }

    .rc-logo-hero {
        flex-direction: row;
        gap: 14px;
        margin-bottom: 30px;
    }

    .rc-logo-icon-large {
        width: 48px;
        height: 48px;
    }

    .rc-logo-icon-large svg {
        width: 28px;
        height: 28px;
    }

    .rc-brand-name {
        font-size: 24px;
    }

    .rc-hero-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .rc-hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .rc-btn-cta {
        padding: 13px 34px;
        font-size: 15px;
    }

    .rc-features {
        padding: 50px 20px;
    }

    .rc-section-title {
        font-size: 22px;
        margin-bottom: 36px;
    }

    .rc-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rc-feature-card {
        gap: 18px;
        align-items: flex-start;
    }

    .rc-feature-icon {
        width: 46px;
        height: 46px;
        margin-top: 2px;
    }

    .rc-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .rc-feature-title {
        font-size: 16px;
    }

    .rc-feature-desc {
        font-size: 14px;
    }

    .rc-app {
        flex-direction: column;
    }

    .rc-sidebar {
        width: 100%;
        padding: 20px;
    }

    .rc-sidebar h2 {
        font-size: 18px;
    }

    .rc-main {
        padding: 20px;
    }

    .rc-stats-grid {
        grid-template-columns: 1fr;
    }

    .rc-panel {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .rc-nav-content {
        height: 56px;
    }

    .rc-logo-text {
        font-size: 16px;
    }

    .rc-hero {
        padding: 40px 16px 60px;
    }

    .rc-logo-hero {
        gap: 12px;
        margin-bottom: 26px;
    }

    .rc-logo-icon-large {
        width: 44px;
        height: 44px;
    }

    .rc-logo-icon-large svg {
        width: 24px;
        height: 24px;
    }

    .rc-brand-name {
        font-size: 22px;
    }

    .rc-hero-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .rc-hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .rc-btn-cta {
        padding: 12px 30px;
        font-size: 15px;
    }

    .rc-features {
        padding: 40px 16px;
    }

    .rc-section-title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .rc-features-grid {
        gap: 28px;
    }

    .rc-feature-card {
        gap: 16px;
    }

    .rc-feature-icon {
        width: 42px;
        height: 42px;
        margin-top: 1px;
    }

    .rc-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .rc-feature-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .rc-feature-desc {
        font-size: 13px;
    }

    .rc-sidebar {
        padding: 16px;
    }

    .rc-sidebar h2 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .rc-sidebar nav li {
        font-size: 13px;
        padding: 10px 14px;
    }

    .rc-main {
        padding: 16px;
    }

    .rc-panel {
        padding: 16px;
    }

    .rc-dashboard h3 {
        font-size: 18px;
    }

    .rc-stat-value {
        font-size: 24px;
    }

    .rc-stat-label {
        font-size: 12px;
    }

    #rc-search {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 360px) {
    .rc-hero-title {
        font-size: 20px;
    }

    .rc-brand-name {
        font-size: 20px;
    }

    .rc-hero-subtitle {
        font-size: 13px;
    }

    .rc-section-title {
        font-size: 18px;
    }

    .rc-feature-title {
        font-size: 14px;
    }

    .rc-feature-icon {
        width: 40px;
        height: 40px;
    }

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

    .rc-logo-hero {
        gap: 10px;
    }

    .rc-logo-icon-large {
        width: 40px;
        height: 40px;
    }

    .rc-logo-icon-large svg {
        width: 22px;
        height: 22px;
    }

    .rc-btn-cta {
        padding: 11px 26px;
        font-size: 14px;
    }
}
/* ---------------- Subscription Elements ---------------- */
.rc-alert-warning {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    color: #92400e;
    padding: 16px 24px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.rc-btn-upgrade-now {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.rc-btn-upgrade-now:hover {
    background: #d97706;
}

.rc-subscription-card {
    background: #252b3d;
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    font-size: 13px;
    border: 1px solid #374151;
}

.rc-sub-plan {
    margin-bottom: 8px;
}

.rc-sub-status {
    margin-bottom: 12px;
}

.rc-status-tag {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-active { background: #065f46; color: #34d399; }
.status-trialing { background: #1e40af; color: #93c5fd; }
.status-inactive { background: #991b1b; color: #fca5a5; }

.rc-sub-usage {
    margin-bottom: 12px;
}

.rc-progress-bar {
    height: 6px;
    background: #374151;
    border-radius: 3px;
    margin-top: 6px;
    overflow: hidden;
}

.rc-progress-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 3px;
}

.rc-sub-date {
    color: #9ca3af;
    margin-bottom: 16px;
    font-size: 12px;
}

.rc-sub-actions button {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.rc-btn-portal {
    background: #374151;
    color: #fff;
}

.rc-btn-portal:hover {
    background: #4b5563;
}

.rc-btn-upgrade-modal {
    background: #3b82f6;
    color: #fff;
}

.rc-btn-upgrade-modal:hover {
    background: #2563eb;
}

/* Modal for Plan Selection */
.rc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.rc-modal {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.rc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.rc-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
}

.rc-plan-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rc-plan-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.rc-plan-option:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.rc-plan-option h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.rc-plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 16px;
}

.rc-btn-select-plan {
    width: 100%;
    padding: 10px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .rc-plan-selector {
        grid-template-columns: 1fr;
    }
}
