/* MyLRs Landing Page - Clean Modern Design */

:root {
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-primary-light: #DBEAFE;
    --color-accent: #F97316;
    --color-accent-dark: #EA580C;
    --color-success: #10B981;
    --color-dark: #0F172A;
    --color-dark-secondary: #1E293B;
    --color-heading: #0F172A;
    --color-body: #475569;
    --color-muted: #94A3B8;
    --color-border: #E2E8F0;
    --color-bg-light: #F8FAFC;
    --color-bg-section: #F1F5F9;
    --color-white: #FFFFFF;
}

/* ========== RESET & BASE ========== */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

/* ========== HEADER ========== */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
}

.landing-header .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-dark);
}

.landing-header .nav-link {
    font-weight: 500;
    color: var(--color-body);
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.landing-header .nav-link:hover {
    color: var(--color-primary);
}

/* ========== HERO ========== */
.landing-hero {
    background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-secondary) 50%, #172554 100%);
    color: var(--color-white);
    padding: 8rem 1rem 5rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern overlay */
.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Subtle glow behind hero content */
.landing-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .landing-hero {
        padding: 10rem 2rem 6rem;
    }
    .hero-title {
        font-size: 3.25rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* ========== HERO FEATURE HIGHLIGHTS ========== */
.hero-features {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.hero-feature-text {
    text-align: left;
}

.hero-feature-text strong {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    color: white;
    margin-bottom: 0.15rem;
}

.hero-feature-text small {
    font-size: 0.85rem;
    color: #94A3B8;
}

@media (max-width: 768px) {
    .hero-feature-item {
        padding: 0.75rem 1rem;
    }
}

/* ========== BUTTONS ========== */
.btn-landing-primary {
    background: var(--color-accent);
    color: white;
    padding: 0.8rem 2.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-landing-primary:hover {
    background: var(--color-accent-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-landing-secondary {
    background: transparent;
    color: white;
    padding: 0.8rem 2.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-landing-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-landing-success {
    background: var(--color-primary);
    color: white;
    padding: 0.8rem 2.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
}

.btn-landing-success:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-1px);
}

.btn-landing-primary-solid {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.8rem 2.25rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-landing-primary-solid:hover {
    background: var(--color-accent-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-landing-outline-primary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.8rem 2.25rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-landing-outline-primary:hover {
    background: var(--color-primary);
    color: white;
}

/* ========== BENEFITS ========== */
.landing-benefits {
    padding: 5rem 1rem;
    background: var(--color-white);
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-primary);
    font-size: 1.75rem;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}

.benefit-card p {
    color: var(--color-body);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== FEATURES ========== */
.landing-features {
    padding: 5rem 1rem;
    background: var(--color-bg-light);
}

.landing-features h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-heading);
    letter-spacing: -0.01em;
}

.feature-item {
    margin-bottom: 4rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-image {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    width: 100%;
    height: auto;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.feature-content p {
    color: var(--color-body);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========== PLATFORMS ========== */
.landing-platforms {
    padding: 5rem 1rem;
    background: var(--color-dark);
    color: white;
}

.landing-platforms h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.landing-platforms .subtitle {
    color: #94A3B8;
    font-size: 1.1rem;
}

.platform-item {
    text-align: center;
    margin-bottom: 2rem;
}

.platform-item img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

.platform-item h4 {
    margin-top: 1rem;
    font-weight: 600;
    color: #CBD5E1;
}

.device-desktop img { max-height: 400px; width: auto; }
.device-tablet img { max-height: 350px; width: auto; }
.device-mobile img { max-height: 400px; width: auto; }

/* ========== PRICING ========== */
.landing-pricing {
    padding: 5rem 1rem;
    background: var(--color-white);
    text-align: center;
}

.landing-pricing h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.landing-pricing .lead {
    color: var(--color-body);
    margin-bottom: 2rem;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-body);
}

.pricing-feature i {
    color: var(--color-success);
}

/* ========== CTA ========== */
.landing-cta {
    padding: 5rem 1rem;
    background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-secondary) 50%, #172554 100%);
    color: white;
    text-align: center;
}

.landing-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.landing-cta p {
    color: #CBD5E1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .landing-cta h2 {
        font-size: 2.5rem;
    }
}

/* ========== FOOTER ========== */
.landing-footer {
    background: var(--color-dark);
    color: #94A3B8;
    padding: 3rem 1rem;
}

.landing-footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.landing-footer a:hover {
    color: white;
}

.landing-footer hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0;
}

/* ========== HOW IT WORKS ========== */
.landing-how-it-works {
    padding: 5rem 1rem;
    background: var(--color-white);
}

.how-it-works-title {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
}

.how-it-works-title p {
    font-size: 1.1rem;
    color: var(--color-body);
}

.step-item {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
}

.step-connector { display: none; }

@media (min-width: 992px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 28px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: var(--color-border);
        z-index: -1;
    }
    .step-item:last-child .step-connector { display: none; }
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--color-body);
    font-size: 1rem;
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========== TESTIMONIALS ========== */
.landing-testimonials {
    padding: 5rem 1rem;
    background: var(--color-bg-light);
}

.testimonials-title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
}

.testimonials-title p {
    font-size: 1.1rem;
    color: var(--color-body);
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-body);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
    padding-left: 0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.15rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0;
}

.testimonial-rating {
    color: #F59E0B;
    margin-top: 0.75rem;
    font-size: 1rem;
}

/* ========== COMPARISON ========== */
.landing-comparison {
    padding: 5rem 1rem;
    background: var(--color-white);
}

.comparison-title {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
}

.comparison-title p {
    font-size: 1.1rem;
    color: var(--color-body);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
}

.comparison-header-cell {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-heading);
}

.comparison-header-cell:nth-child(2) {
    background: var(--color-bg-section);
}

.comparison-header-cell:nth-child(3) {
    background: var(--color-primary);
    color: white;
    font-weight: 700;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s;
}

.comparison-row:hover { background: var(--color-bg-light); }
.comparison-row:last-child { border-bottom: none; }

.comparison-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 500;
    color: var(--color-heading);
}

.comparison-cell i { font-size: 1.4rem; }
.comparison-cell i.bi-x-circle { color: #EF4444; }
.comparison-cell i.bi-check-circle-fill { color: var(--color-success); }

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .comparison-header-cell,
    .comparison-cell {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }
}

/* ========== FAQ ========== */
.landing-faq {
    padding: 5rem 1rem;
    background: var(--color-bg-light);
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
}

.faq-title p {
    font-size: 1.1rem;
    color: var(--color-body);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--color-primary);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-heading);
    transition: color 0.2s;
}

.faq-question:hover { color: var(--color-primary); }

.faq-question i {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--color-body);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* ========== SECURITY ========== */
.landing-security {
    padding: 5rem 1rem;
    background: var(--color-dark);
    color: white;
}

.security-title {
    text-align: center;
    margin-bottom: 3rem;
}

.security-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.security-title p {
    font-size: 1.1rem;
    color: #94A3B8;
}

.security-feature {
    text-align: center;
    padding: 2rem 1rem;
}

.security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #60A5FA;
}

.security-feature h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.security-feature p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--color-heading);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .whatsapp-tooltip { display: none; }
}

/* ========== PRICING CARDS ========== */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-border);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
}

.pricing-card.featured:hover {
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.18);
    transform: translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-heading);
}

.pricing-currency {
    font-size: 1.25rem;
    vertical-align: super;
}

.pricing-period {
    font-size: 1rem;
    color: var(--color-muted);
}

.pricing-description {
    text-align: center;
    color: var(--color-body);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--color-body);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pricing-features li i {
    color: var(--color-success);
    font-size: 1.1rem;
}

.pricing-cta { text-align: center; }

.pricing-cta .btn {
    width: 100%;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* ========== SECTION UTILITIES ========== */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--color-body);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========== BADGE ========== */
.badge-modern {
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    background: rgba(37, 99, 235, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ========== LR DOCUMENT MOCKUP ========== */
.lr-document-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 2rem;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
}

.lr-document-header {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.lr-document-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.lr-document-title {
    font-size: 1rem;
    color: var(--color-heading);
    font-weight: 600;
}

.lr-document-field {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--color-border);
}

.lr-field-label {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.lr-field-value {
    color: var(--color-heading);
    font-weight: 600;
    font-size: 0.85rem;
}

.lr-document-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    opacity: 0.25;
    font-weight: 700;
    color: var(--color-success);
    font-size: 0.7rem;
}

/* ========== TRUST STATS ========== */
.trust-stats {
    text-align: center;
    margin-top: 2rem;
}

.stat-item {
    display: inline-block;
    margin: 0 2rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up { animation: fadeInUp 0.5s ease-out; }
.animate-fade-in { animation: fadeIn 0.6s ease-in; }

/* ========== HOVER UTILITIES ========== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ========== MOBILE NAVIGATION ========== */
@media (max-width: 991.98px) {
    .landing-header .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--color-border);
    }

    .landing-header .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* ========== ROUTE PROGRESS (for Blazor components) ========== */
.route-progress {
    position: relative;
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.route-progress-bar {
    height: 100%;
    background: var(--color-primary);
    border-radius: 3px;
}

/* ========== TRUST BADGES ========== */
.landing-trust-badges {
    padding: 3rem 1rem;
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
}

.trust-badge-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.trust-badge-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.25rem;
}

.trust-badge-item p {
    font-size: 0.85rem;
    color: var(--color-body);
    margin: 0;
}

/* ========== FLOATING ICON (minimal) ========== */
.floating-icon {
    position: absolute;
    opacity: 0.05;
    color: white;
}

/* ========== GRADIENT BLOB (minimal) ========== */
.gradient-blob { display: none; }
