/* ==========================================================================
   RentFlow Landing Pages (Scoped Responsive Styles)
   ========================================================================== */

.rentflow-landing-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background-color: #f8fafc;
    overflow-x: hidden;
    padding-bottom: 80px;
}

.rentflow-landing-wrapper.rentflow-bn-lang,
.rentflow-landing-wrapper.rentflow-bn-lang * {
    font-family: 'Hind Siliguri', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.rentflow-landing-wrapper .rf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher Bar */
.rf-lang-bar {
    background: #0f172a;
    padding: 10px 0;
    color: #94a3b8;
    font-size: 14px;
}
.rf-lang-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}
.rf-lang-pills {
    display: inline-flex;
    background: #1e293b;
    border-radius: 20px;
    padding: 3px;
    gap: 4px;
}
.rf-lang-pills .rf-pill {
    color: #cbd5e1;
    text-decoration: none;
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.rf-lang-pills .rf-pill:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}
.rf-lang-pills .rf-pill.active {
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
}

/* Hero Section */
.rf-hero-section {
    padding: 60px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.06) 0%, rgba(248, 250, 252, 1) 90%);
}
.rf-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}
.rf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.rf-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}
.rf-hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.rf-gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #4338ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rf-hero-sub {
    font-size: 17px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.65;
}
.rf-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.rf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}
.rf-btn-primary {
    background: #2563eb;
    color: #ffffff !important;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
}
.rf-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.45);
}
.rf-btn-secondary {
    background: #ffffff;
    color: #1e293b !important;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.rf-btn-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}
.rf-btn-outline {
    background: #ffffff;
    color: #2563eb !important;
    border: 2px solid #2563eb;
}
.rf-btn-outline:hover {
    background: #2563eb;
    color: #ffffff !important;
}
.rf-btn-glow {
    animation: rf-pulse 2.5s infinite;
}
@keyframes rf-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.rf-hero-stats {
    display: flex;
    gap: 32px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}
.rf-stat-item strong {
    display: block;
    font-size: 20px;
    color: #0f172a;
    font-weight: 700;
}
.rf-stat-item span {
    font-size: 13px;
    color: #64748b;
}

.rf-hero-mockup-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.05);
    background: #ffffff;
    transition: transform 0.3s ease;
}
.rf-hero-mockup-frame:hover {
    transform: translateY(-4px);
}
.rf-mockup-img {
    width: 100%;
    height: auto;
    display: block;
}
.rf-badge-floating {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rf-star {
    color: #fbbf24;
}

/* Section Shared */
.rf-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.rf-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.rf-section-desc {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Features Grid */
.rf-features-section {
    padding: 80px 0;
    background: #ffffff;
}
.rf-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.rf-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px 26px;
    transition: all 0.25s ease;
}
.rf-card:hover {
    border-color: #93c5fd;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(37, 99, 235, 0.12);
    background: #ffffff;
}
.rf-card-icon {
    font-size: 34px;
    margin-bottom: 18px;
    line-height: 1;
}
.rf-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}
.rf-card p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* ROI Comparison Section */
.rf-roi-section {
    padding: 80px 0;
    background: #f1f5f9;
}
.rf-table-responsive {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}
.rf-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}
.rf-comparison-table th {
    background: #0f172a;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 600;
    border: 1px solid #334155;
}
.rf-comparison-table th.rf-highlight-col {
    background: #1d4ed8;
    color: #ffffff;
}
.rf-comparison-table td {
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    color: #334155;
    line-height: 1.5;
}
.rf-comparison-table td.rf-highlight-cell {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
    font-weight: 500;
}

/* Target Segments Section */
.rf-segments-section {
    padding: 80px 0;
    background: #ffffff;
}
.rf-segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.rf-segment-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 26px 24px;
    transition: all 0.2s ease;
}
.rf-segment-card:hover {
    border-color: #93c5fd;
    background: #ffffff;
    box-shadow: 0 8px 20px -6px rgba(37,99,235,0.1);
}
.rf-segment-card h4 {
    font-size: 17px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 700;
}
.rf-segment-card p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Demo Video Section */
.rf-demo-section {
    padding: 80px 0;
    background: #f8fafc;
}
.rf-video-container {
    max-width: 900px;
    margin: 0 auto;
}
.rf-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
    background: #000;
}
.rf-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pricing Section */
.rf-pricing-section {
    padding: 80px 0;
    background: #ffffff;
}
.rf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}
.rf-pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease;
}
.rf-pricing-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 16px 32px -10px rgba(15, 23, 42, 0.08);
}
.rf-pricing-card.rf-featured {
    border: 2px solid #2563eb;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.2);
    transform: scale(1.03);
}
.rf-pricing-card.rf-trial-card {
    border-color: #a7f3d0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}
.rf-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.rf-free-ribbon {
    background: #10b981;
}
.rf-card-head {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}
.rf-plan-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}
.rf-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.rf-currency {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}
.rf-amount {
    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}
.rf-period {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}
.rf-plan-sub {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}
.rf-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}
.rf-plan-features li {
    font-size: 14px;
    color: #334155;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}
.rf-card-cta .rf-btn {
    width: 100%;
}

/* Payment Assurance */
.rf-payment-assurance {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 30px;
    text-align: center;
}
.rf-pay-badge-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.rf-pay-title {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}
.rf-pay-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.rf-badge-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}
.rf-pay-note {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* System Specifications Section */
.rf-tech-specs-section {
    padding: 80px 0;
    background: #f8fafc;
}
.rf-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #ffffff;
}
.rf-specs-table td {
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
    color: #334155;
}
.rf-specs-table tr:nth-child(odd) {
    background: #f8fafc;
}

/* FAQ Accordion */
.rf-faq-section {
    padding: 80px 0;
    background: #ffffff;
}
.rf-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rf-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 24px;
    transition: border-color 0.2s;
}
.rf-faq-item[open] {
    border-color: #93c5fd;
    background: #ffffff;
}
.rf-faq-item summary {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    outline: none;
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.rf-faq-item summary::-webkit-details-marker {
    display: none;
}
.rf-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #2563eb;
    font-weight: 700;
}
.rf-faq-item[open] summary::after {
    content: "−";
}
.rf-faq-content {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.rf-faq-content p {
    font-size: 14.5px;
    color: #475569;
    margin: 0;
    line-height: 1.65;
}

/* Final CTA Section */
.rf-final-cta-section {
    padding: 60px 0 20px;
}
.rf-final-cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
}
.rf-final-cta-box h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 12px;
}
.rf-final-cta-box p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 28px;
}

/* Mobile Sticky Bar */
.rf-mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    z-index: 9999;
}
.rf-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}
.rf-sticky-text strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}
.rf-sticky-text span {
    font-size: 11px;
    color: #94a3b8;
}
.rf-btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 8px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .rf-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .rf-hero-actions {
        justify-content: center;
    }
    .rf-hero-stats {
        justify-content: center;
    }
    .rf-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rf-segments-grid {
        grid-template-columns: 1fr;
    }
    .rf-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .rf-pricing-card.rf-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .rf-hero-title {
        font-size: 28px;
    }
    .rf-hero-sub {
        font-size: 15px;
    }
    .rf-cards-grid {
        grid-template-columns: 1fr;
    }
    .rf-mobile-sticky-bar {
        display: block;
    }
    .rentflow-landing-wrapper {
        padding-bottom: 120px;
    }
}
