/* ═══════════════════════════════════════════════════════════════
   RENTAL GATES — Public Landing Page Stylesheet
   Premium dark SaaS aesthetic · Outfit + DM Sans
   Fonts loaded via <link> in HTML head for optimal performance.
   ═══════════════════════════════════════════════════════════════ */

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

:root {
    --lp-bg:         #06080f;
    --lp-bg-card:    #0c1120;
    --lp-bg-elevated:#111827;
    --lp-border:     rgba(255,255,255,0.06);
    --lp-text:       #e2e8f0;
    --lp-text-heading:#ffffff;
    --lp-text-muted: #8494a7;
    --lp-text-dim:   #728496;
    --lp-accent:     #10b981;
    --lp-accent-glow:rgba(16,185,129,0.15);
    --lp-purple:     #8b5cf6;
    --lp-blue:       #3b82f6;
    --lp-font-display:'Outfit', sans-serif;
    --lp-font-body:  'DM Sans', sans-serif;
    --lp-max-w:      1200px;
    --lp-radius:     16px;
    --lp-hover-border:rgba(255,255,255,0.12);
    --lp-subtle-border:rgba(255,255,255,0.03);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--lp-font-body);
    background: var(--lp-bg);
    color: var(--lp-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Background Texture ── */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16,185,129,0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,0.05), transparent);
}

.lp-wrap { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    background: rgba(6,8,15,0.7);
    border-bottom: 1px solid var(--lp-border);
    transition: background 0.3s, box-shadow 0.3s;
}
.lp-nav.scrolled {
    background: rgba(6,8,15,0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.lp-nav-inner {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--lp-text-heading);
}
.lp-nav-brand-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.lp-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-muted);
    transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--lp-text-heading); }
.lp-nav-right { display: flex; align-items: center; gap: 12px; }
.lp-nav-login {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}
.lp-nav-login:hover { color: var(--lp-text-heading); }
.lp-nav-cta {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--lp-font-display);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    background: var(--lp-accent);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.lp-nav-cta:hover {
    background: #059669;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
    transform: translateY(-1px);
}
/* Nav icon buttons */
.lp-nav-icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid var(--lp-border); background: transparent;
    color: var(--lp-text-muted); cursor: pointer; transition: all 0.2s;
}
.lp-nav-icon-btn:hover { color: var(--lp-text-heading); border-color: var(--lp-hover-border); background: var(--lp-bg-elevated); }
/* Language dropdown */
.lp-lang-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 150px; padding: 6px;
    background: var(--lp-bg-card); border: 1px solid var(--lp-border);
    border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    z-index: 200;
}
.lp-lang-dropdown.open { display: block; }
.lp-lang-opt {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-radius: 8px; font-size: 13px; font-weight: 500;
    color: var(--lp-text-muted); cursor: pointer; transition: all 0.15s;
}
.lp-lang-opt:hover { background: var(--lp-bg-elevated); color: var(--lp-text-heading); }
.lp-lang-opt.active { color: var(--lp-accent); }
.lp-hamburger {
    display: none; border: none; background: none; color: var(--lp-text-heading);
    cursor: pointer; padding: 4px; width: 32px; height: 32px;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.lp-hero {
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
}
.lp-hero-inner { max-width: 800px; margin: 0 auto; }
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--lp-accent);
    background: var(--lp-accent-glow);
    border: 1px solid rgba(16,185,129,0.15);
    margin-bottom: 28px;
    animation: lp-fade-up 0.6s ease both;
}
.lp-hero h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    white-space: pre-line;
    animation: lp-fade-up 0.7s 0.1s ease both;
}
.lp-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--lp-text-muted);
    max-width: 580px;
    margin: 0 auto 36px;
    animation: lp-fade-up 0.7s 0.2s ease both;
}
.lp-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: lp-fade-up 0.7s 0.3s ease both;
}
.lp-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
    color: #fff; background: linear-gradient(135deg, #10b981, #059669);
    border: none; cursor: pointer; transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(16,185,129,0.25);
    font-family: var(--lp-font-display);
}
.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16,185,129,0.35);
}
.lp-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
    color: var(--lp-text); background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border); cursor: pointer; transition: all 0.25s;
    font-family: var(--lp-font-display);
}
.lp-btn-secondary:hover {
    border-color: var(--lp-hover-border);
    background: var(--lp-bg-elevated);
    transform: translateY(-1px);
}

/* Hero Stats */
.lp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    animation: lp-fade-up 0.7s 0.4s ease both;
}
.lp-hero-stat-val {
    font-family: var(--lp-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--lp-text-heading);
}
.lp-hero-stat-lbl {
    font-size: 13px;
    color: var(--lp-text-muted);
    margin-top: 2px;
}

/* ═══════════════════════════════════════
   TRUSTED BY
   ═══════════════════════════════════════ */
.lp-trusted {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}
.lp-trusted-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lp-text-dim);
    font-weight: 600;
    margin-bottom: 24px;
}
.lp-trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: var(--lp-max-w);
    margin: 0 auto;
}
.lp-trusted-logo {
    font-family: var(--lp-font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-text-dim);
    transition: color 0.2s;
}
.lp-trusted-logo:hover { color: var(--lp-text-muted); }

/* ═══════════════════════════════════════
   SECTION UTILITY
   ═══════════════════════════════════════ */
.lp-section {
    padding: 100px 24px;
    max-width: var(--lp-max-w);
    margin: 0 auto;
}
.lp-section-badge {
    display: inline-flex;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lp-accent);
    background: var(--lp-accent-glow);
    border: 1px solid rgba(16,185,129,0.12);
    margin-bottom: 16px;
}
.lp-section-title {
    font-family: var(--lp-font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--lp-text-heading);
    margin-bottom: 14px;
}
.lp-section-sub {
    font-size: 17px;
    color: var(--lp-text-muted);
    max-width: 560px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.lp-feature-card {
    padding: 28px;
    border-radius: var(--lp-radius);
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--fc-color);
    opacity: 0;
    transition: opacity 0.3s;
}
.lp-feature-card:hover {
    border-color: var(--lp-hover-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.lp-feature-card:hover::before { opacity: 1; }
.lp-feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
}
.lp-feature-card h3 {
    font-family: var(--lp-font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--lp-text-heading);
    margin-bottom: 10px;
}
.lp-feature-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--lp-text-muted);
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.lp-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: var(--lp-max-w);
    margin: 0 auto;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}
.lp-stat-item {
    padding: 48px 24px;
    text-align: center;
    border-inline-end: 1px solid var(--lp-border);
}
.lp-stat-item:last-child { border-inline-end: none; }
.lp-stat-val {
    font-family: var(--lp-font-display);
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-stat-lbl {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin-top: 6px;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.lp-step {
    padding: 32px;
    border-radius: var(--lp-radius);
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    position: relative;
}
.lp-step-num {
    font-family: var(--lp-font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(16,185,129,0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.lp-step h3 {
    font-family: var(--lp-font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-text-heading);
    margin-bottom: 10px;
}
.lp-step p {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.65;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.lp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 48px;
}
.lp-pricing-toggle span {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-muted);
    transition: color 0.2s;
}
.lp-pricing-toggle span.active { color: var(--lp-text-heading); }
.lp-toggle-track {
    width: 48px; height: 26px;
    border-radius: 13px;
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border);
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}
.lp-toggle-track.active { background: var(--lp-accent); border-color: var(--lp-accent); }
.lp-toggle-dot {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
}
.lp-toggle-track.active .lp-toggle-dot { transform: translateX(22px); }
.lp-toggle-save {
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-accent);
    background: var(--lp-accent-glow);
    padding: 3px 10px;
    border-radius: 50px;
}
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.lp-plan {
    padding: 32px;
    border-radius: var(--lp-radius);
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    position: relative;
    transition: all 0.3s;
}
.lp-plan:hover {
    border-color: var(--lp-hover-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.lp-plan.popular {
    border-color: rgba(16,185,129,0.3);
    background: linear-gradient(180deg, rgba(16,185,129,0.04), var(--lp-bg-card));
    box-shadow: 0 0 60px rgba(16,185,129,0.08);
}
.lp-plan-popular-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
}
.lp-plan-name {
    font-family: var(--lp-font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-text-heading);
    margin-bottom: 4px;
}
.lp-plan-desc {
    font-size: 13px;
    font-family: var(--lp-font-body);
    color: var(--lp-text-muted);
    margin-bottom: 24px;
}
.lp-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.lp-plan-price-val {
    font-family: var(--lp-font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--lp-text-heading);
    line-height: 1;
}
.lp-plan-price-period {
    font-size: 14px;
    color: var(--lp-text-muted);
}
.lp-plan-unit-limit {
    font-size: 12px;
    color: var(--lp-text-dim);
    margin-bottom: 24px;
}
.lp-plan-cta {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--lp-font-display);
    margin-bottom: 24px;
    color: #fff;
}
.lp-plan-cta.primary { background: linear-gradient(135deg, #10b981, #059669); }
.lp-plan-cta.primary:hover { box-shadow: 0 6px 20px rgba(16,185,129,0.3); transform: translateY(-1px); }
.lp-plan-cta.outline { background: var(--lp-bg-elevated); border: 1px solid var(--lp-border); color: var(--lp-text); }
.lp-plan-cta.outline:hover { border-color: var(--lp-hover-border); }
.lp-plan-features { list-style: none; }
.lp-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--lp-font-body);
    border-bottom: 1px solid var(--lp-subtle-border);
}
.lp-plan-features li.included { color: var(--lp-text); }
.lp-plan-features li.excluded { color: var(--lp-text-dim); }
.lp-plan-check { color: var(--lp-accent); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.lp-plan-x { color: var(--lp-text-dim); font-size: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.lp-testimonial {
    padding: 28px;
    border-radius: var(--lp-radius);
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
}
.lp-testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.lp-testimonial-quote {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lp-text);
    font-style: italic;
    margin-bottom: 20px;
}
.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.lp-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-heading);
}
.lp-testimonial-role {
    font-size: 12px;
    color: var(--lp-text-muted);
}
.lp-testimonial-tag {
    display: inline-flex;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #3b82f6;
    background: rgba(59,130,246,0.1);
    margin-bottom: 10px;
}
.lp-testimonial-renter {
    border-color: rgba(59,130,246,0.12);
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.lp-cta-section {
    padding: 80px 24px;
    text-align: center;
    max-width: var(--lp-max-w);
    margin: 0 auto;
}
.lp-cta-card {
    padding: 64px 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(139,92,246,0.06));
    border: 1px solid rgba(16,185,129,0.15);
    position: relative;
    overflow: hidden;
}
.lp-cta-card h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--lp-text-heading);
    margin-bottom: 16px;
}
.lp-cta-card p {
    font-size: 16px;
    color: var(--lp-text-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.lp-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.lp-footer {
    border-top: 1px solid var(--lp-border);
    padding: 64px 24px 32px;
}
.lp-footer-inner {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}
.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--lp-text-heading);
    margin-bottom: 14px;
}
.lp-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lp-text-muted);
    max-width: 280px;
}
.lp-footer-col-title {
    font-family: var(--lp-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.lp-footer-links { list-style: none; }
.lp-footer-links li { margin-bottom: 10px; }
.lp-footer-links a {
    font-size: 14px;
    color: var(--lp-text-muted);
    transition: color 0.2s;
}
.lp-footer-links a:hover { color: var(--lp-accent); }
.lp-footer-bottom {
    max-width: var(--lp-max-w);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
    font-size: 13px;
    color: var(--lp-text-dim);
    text-align: center;
}

/* ═══════════════════════════════════════
   FOR RENTERS SECTION
   ═══════════════════════════════════════ */
.lp-hero-renter-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-accent);
    transition: color 0.2s, gap 0.2s;
}
.lp-hero-renter-link:hover { color: #34d399; gap: 8px; }

.lp-renters-section {
    padding: 100px 24px 80px;
    max-width: var(--lp-max-w);
    margin: 0 auto;
}
.lp-renters-badge {
    background: rgba(59,130,246,0.12) !important;
    color: #3b82f6 !important;
    border-color: rgba(59,130,246,0.15) !important;
}
.lp-renters-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.lp-renters-content { }
.lp-renters-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
}
.lp-renter-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    transition: all 0.3s;
}
.lp-renter-feat:hover {
    border-color: var(--lp-hover-border);
    transform: translateX(4px);
}
[dir="rtl"] .lp-renter-feat:hover { transform: translateX(-4px); }
.lp-renter-feat h4 {
    font-family: var(--lp-font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-text-heading);
    margin-bottom: 4px;
}
.lp-renter-feat p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--lp-text-muted);
}
.lp-renter-feat .lp-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 0;
}

/* ── Interactive Search Preview ── */
.lp-renters-preview {
    position: sticky;
    top: 100px;
}
.lp-preview-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.lp-preview-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-preview-dots {
    display: flex;
    gap: 6px;
}
.lp-preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lp-border);
}
.lp-preview-dots span:first-child { background: #ef4444; }
.lp-preview-dots span:nth-child(2) { background: #f59e0b; }
.lp-preview-dots span:last-child { background: #22c55e; }
.lp-preview-title {
    font-family: var(--lp-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text-heading);
}
.lp-preview-search {
    margin: 14px 18px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-text-dim);
    font-size: 13px;
}
.lp-preview-listings {
    padding: 0 18px;
}
.lp-preview-listing {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--lp-subtle-border);
    animation: lp-listing-in 0.5s ease both;
}
.lp-preview-listing:last-child { border-bottom: none; }
@keyframes lp-listing-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.lp-preview-thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-preview-info { flex: 1; min-width: 0; }
.lp-preview-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-preview-meta {
    font-size: 11px;
    color: var(--lp-text-dim);
    margin-top: 2px;
}
.lp-preview-right {
    text-align: end;
    flex-shrink: 0;
}
.lp-preview-price {
    font-family: var(--lp-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-text-heading);
}
.lp-preview-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 4px;
    display: inline-block;
}

/* Shimmer loading placeholder */
.lp-preview-shimmer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid var(--lp-subtle-border);
}
.lp-shimmer-block {
    background: linear-gradient(90deg, var(--lp-bg-elevated) 25%, var(--lp-border) 50%, var(--lp-bg-elevated) 75%);
    background-size: 200% 100%;
    animation: lp-shimmer 1.5s ease infinite;
}
@keyframes lp-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Renter Stats Bar ── */
.lp-renters-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-bg-card);
    overflow: hidden;
}
.lp-renter-stat {
    padding: 32px 24px;
    text-align: center;
    border-inline-end: 1px solid var(--lp-border);
}
.lp-renter-stat:last-child { border-inline-end: none; }
.lp-renter-stat-val {
    font-family: var(--lp-font-display);
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-renter-stat-lbl {
    font-size: 13px;
    color: var(--lp-text-muted);
    margin-top: 4px;
}

/* ── Renter CTA ── */
.lp-renters-cta {
    text-align: center;
    margin-top: 40px;
}
.lp-btn-lg {
    padding: 14px 36px !important;
    font-size: 16px !important;
}
.lp-renters-cta-sub {
    font-size: 13px;
    color: var(--lp-text-dim);
    margin-top: 10px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes lp-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════ */
.lp-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(6,8,15,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a {
    font-family: var(--lp-font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--lp-text);
}
.lp-mobile-menu a:hover { color: var(--lp-accent); }
.lp-mobile-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; color: var(--lp-text-heading);
    font-size: 28px; cursor: pointer; z-index: 201;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; transition: background 0.2s;
}
.lp-mobile-close:hover { background: rgba(255,255,255,0.08); }
.lp-mobile-controls {
    display: flex; gap: 12px; margin-top: 8px;
}

@media (max-width: 900px) {
    .lp-nav-links { display: none; }
    .lp-nav-login { display: none; }
    .lp-nav-cta { display: none; }
    .lp-nav-right > .lp-nav-icon-btn { display: none; }
    .lp-nav-right > #lp-lang-wrap { display: none; }
    .lp-hamburger { display: block; }
    .lp-features-grid { grid-template-columns: 1fr 1fr; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .lp-testimonials-grid { grid-template-columns: 1fr; }
    .lp-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .lp-stat-item:nth-child(2) { border-inline-end: none; }
    .lp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lp-hero-stats { gap: 28px; }
    /* Renters section */
    .lp-renters-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-renters-preview { position: static; }
    .lp-renters-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-renter-stat:nth-child(2) { border-inline-end: none; }
}

@media (max-width: 600px) {
    .lp-hero { padding: 120px 16px 60px; }
    .lp-hero h1 { font-size: 36px; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-hero-stats { flex-direction: column; gap: 16px; }
    .lp-footer-inner { grid-template-columns: 1fr; }
    .lp-section { padding: 60px 16px; }
    .lp-nav-icon-btn { width: 32px; height: 32px; }
    /* Renters section */
    .lp-renters-section { padding: 60px 16px; }
    .lp-renters-stats { grid-template-columns: 1fr 1fr; }
    .lp-renter-feat { flex-direction: column; }
    .lp-preview-card { margin: 0 -4px; }
}

/* ═══════════════════════════════════════
   LIGHT THEME
   All colors accessible (WCAG AA+ contrast)
   ═══════════════════════════════════════ */
[data-theme="light"] {
    --lp-bg:            #f8fafc;
    --lp-bg-card:       #ffffff;
    --lp-bg-elevated:   #f1f5f9;
    --lp-border:        rgba(0,0,0,0.08);
    --lp-text:          #334155;
    --lp-text-heading:  #0f172a;
    --lp-text-muted:    #475569;
    --lp-text-dim:      #5b6e81;
    --lp-hover-border:  rgba(0,0,0,0.15);
    --lp-subtle-border: rgba(0,0,0,0.06);
}
[data-theme="light"] body { background: var(--lp-bg); }
[data-theme="light"] body::before {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16,185,129,0.06), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,0.04), transparent);
}
/* Nav */
[data-theme="light"] .lp-nav { background: rgba(248,250,252,0.8); }
[data-theme="light"] .lp-nav.scrolled {
    background: rgba(248,250,252,0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
/* Hero gradient text */
[data-theme="light"] .lp-hero h1 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
/* Stat gradient text */
[data-theme="light"] .lp-stat-val {
    background: linear-gradient(135deg, #0f172a, #059669);
    -webkit-background-clip: text;
    background-clip: text;
}
[data-theme="light"] .lp-renter-stat-val {
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
}
[data-theme="light"] .lp-preview-card {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04) inset;
}
/* Secondary button */
[data-theme="light"] .lp-btn-secondary {
    color: #1e293b;
    background: #fff;
    border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .lp-btn-secondary:hover {
    background: #f1f5f9;
    border-color: rgba(0,0,0,0.18);
}
/* Cards elevation */
[data-theme="light"] .lp-feature-card,
[data-theme="light"] .lp-plan,
[data-theme="light"] .lp-testimonial,
[data-theme="light"] .lp-step,
[data-theme="light"] .lp-renter-feat,
[data-theme="light"] .lp-preview-card,
[data-theme="light"] .lp-renters-stats { box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
[data-theme="light"] .lp-feature-card:hover,
[data-theme="light"] .lp-plan:hover,
[data-theme="light"] .lp-preview-card {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
/* Popular plan */
[data-theme="light"] .lp-plan.popular {
    border-color: rgba(16,185,129,0.25);
    background: linear-gradient(180deg, rgba(16,185,129,0.03), #fff);
    box-shadow: 0 2px 20px rgba(16,185,129,0.08);
}
/* Outline plan button */
[data-theme="light"] .lp-plan-cta.outline {
    background: #fff;
    border-color: rgba(0,0,0,0.12);
    color: #1e293b;
}
[data-theme="light"] .lp-plan-cta.outline:hover {
    border-color: rgba(0,0,0,0.2);
    background: #f8fafc;
}
/* CTA card */
[data-theme="light"] .lp-cta-card {
    background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(139,92,246,0.03));
    border-color: rgba(16,185,129,0.12);
}
/* Lang dropdown */
[data-theme="light"] .lp-lang-dropdown {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
/* Mobile menu */
[data-theme="light"] .lp-mobile-menu { background: rgba(248,250,252,0.97); }
[data-theme="light"] .lp-mobile-close:hover { background: rgba(0,0,0,0.05); }
/* Toggle track */
[data-theme="light"] .lp-toggle-track { background: #e2e8f0; border-color: #cbd5e1; }
/* Trusted logos */
[data-theme="light"] .lp-trusted-logo { color: var(--lp-text-dim); }
[data-theme="light"] .lp-trusted-logo:hover { color: var(--lp-text-muted); }
/* Step number watermark */
[data-theme="light"] .lp-step-num { color: rgba(16,185,129,0.1); }
/* Hero badge */
[data-theme="light"] .lp-hero-badge { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.12); }
/* Section badge */
[data-theme="light"] .lp-section-badge { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.1); }
/* Feature icon bg opacity */
[data-theme="light"] .lp-feature-card::before { opacity: 0 !important; }
[data-theme="light"] .lp-feature-card:hover::before { opacity: 1 !important; }

/* ═══════════════════════════════════════
   RTL (Arabic)
   ═══════════════════════════════════════ */
/* Global RTL font: override CSS variables so ALL elements inherit Noto Kufi Arabic */
[dir="rtl"] {
    --lp-font-display: 'Noto Kufi Arabic', 'Outfit', Tahoma, sans-serif;
    --lp-font-body:    'Noto Kufi Arabic', 'DM Sans', Tahoma, sans-serif;
}
[dir="rtl"] .lp-hero h1 { white-space: normal; }
[dir="rtl"] .lp-lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lp-hero-badge { direction: rtl; }
[dir="rtl"] .lp-plan-price { direction: ltr; justify-content: flex-end; }
[dir="rtl"] .lp-plan-popular-badge { direction: rtl; }
/* Toggle: reverse direction and dot movement in RTL */
[dir="rtl"] .lp-pricing-toggle { flex-direction: row-reverse; }
[dir="rtl"] .lp-toggle-track.active .lp-toggle-dot { transform: translateX(-22px); }
[dir="rtl"] .lp-toggle-dot { left: auto; right: 3px; }
/* Pricing cards: reverse order in RTL (Enterprise→Pro→Starter) */
[dir="rtl"] .lp-pricing-grid { direction: rtl; }
/* Mobile close button position in RTL */
[dir="rtl"] .lp-mobile-close { right: auto; left: 24px; }
/* Footer grid RTL */
[dir="rtl"] .lp-footer-inner { direction: rtl; }
