/**
 * Landing theme Blaze - Perfex SaaS built-in landing page
 */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* Navbar */
.landing-nav {
    background: #fff;
    box-shadow: 0 1px 10px rgba(0,0,0,.08);
    padding: 0.75rem 0;
}
.landing-nav .navbar-brand .landing-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}
.landing-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}
.landing-nav .nav-link:hover { color: #0d6efd !important; }
.btn-landing { font-weight: 600; border-radius: 8px; padding: 0.5rem 1.25rem; }

/* Hero */
.landing-hero { padding-top: 80px; }
.hero-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.hero-desc { font-size: 1.1rem; color: #6c757d; margin-bottom: 1.5rem; max-width: 540px; }
.hero-image img { max-height: 400px; object-fit: contain; }

/* Brands */
.landing-brands { background: #f8f9fa; }
.brand-placeholder {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #adb5bd;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Section title */
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }

/* Feature cards */
.feature-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-card h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { color: #6c757d; margin: 0; font-size: 0.95rem; }

/* Team */
.team-card img { width: 120px; height: 120px; object-fit: cover; }
.team-card h5 { margin-bottom: 0.25rem; }
.team-card .text-muted { font-size: 0.9rem; }

/* Testimonial */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    height: 100%;
}
.testimonial-card p { color: #495057; font-style: italic; }
.testimonial-card strong { display: block; margin-top: 0.5rem; }
.testimonial-card .text-muted { font-size: 0.85rem; }

/* Pricing */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    padding: 2rem;
    height: 100%;
    border: 2px solid transparent;
    transition: border-color .2s, transform .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-featured { border-color: #0d6efd; position: relative; }
.pricing-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #eee; }
.pricing-header h5 { font-size: 0.9rem; font-weight: 700; letter-spacing: .05em; color: #6c757d; margin-bottom: 0.5rem; }
.pricing-header .price { font-size: 2rem; font-weight: 700; margin: 0; }
.pricing-header .price span { font-size: 0.9rem; font-weight: 400; color: #6c757d; }
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.pricing-list li {
    padding: 0.4rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}
.pricing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: 700;
}

/* Footer */
.landing-footer { background: #212529; color: #adb5bd; }
.landing-footer .h4, .landing-footer h2 { color: #fff; }
.landing-footer .footer-menu a { color: #adb5bd; margin-right: 1rem; }
.landing-footer .footer-menu a:hover { color: #fff; }
.landing-footer .newsletter-form input { border-radius: 8px; }

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #0d6efd;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13,110,253,.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { color: #fff; background: #0b5ed7; }
