/* ============================================================
   SalonDesk - Landing Page Styles
   ============================================================ */

/* Navbar */
.navbar-landing {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
}
.navbar-landing .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sd-primary);
}
.navbar-landing .nav-link {
    color: var(--sd-gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem;
}
.navbar-landing .nav-link:hover,
.navbar-landing .nav-link.active {
    color: var(--sd-primary);
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
}
.btn-hero-primary {
    background: #fff;
    color: var(--sd-primary);
    border: none;
}
.btn-hero-primary:hover {
    background: var(--sd-gray-100);
    color: var(--sd-primary-dark);
}
.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-section {
        padding: 8rem 0 6rem;
    }
}

/* Features */
.features-section {
    padding: 5rem 0;
    background: #fff;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sd-gray-900);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--sd-gray-500);
    margin-bottom: 3rem;
}
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    background: var(--sd-gray-50);
    border: 1px solid var(--sd-gray-200);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sd-shadow-lg);
    border-color: var(--sd-primary-light);
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sd-primary), var(--sd-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sd-gray-900);
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--sd-gray-500);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Pricing */
.pricing-section {
    padding: 5rem 0;
    background: var(--sd-gray-50);
}
.pricing-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--sd-gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sd-shadow-lg);
}
.pricing-card.popular {
    border-color: var(--sd-primary);
    position: relative;
}
.pricing-card.popular::before {
    content: attr(data-label);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sd-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}
.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sd-gray-900);
}
.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sd-primary);
    line-height: 1;
}
.pricing-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--sd-gray-500);
}
.pricing-features {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}
.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sd-gray-100);
    font-size: 0.9375rem;
}
.pricing-features li i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
}
.pricing-features li .fa-check {
    color: var(--sd-success);
}
.pricing-features li .fa-xmark {
    color: var(--sd-gray-300);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-secondary) 100%);
    color: #fff;
    text-align: center;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section .btn {
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Footer */
.footer {
    background: var(--sd-gray-900);
    color: var(--sd-gray-300);
    padding: 3rem 0 1.5rem;
}
.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer a {
    color: var(--sd-gray-300);
}
.footer a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
}

/* Language switcher */
.lang-switch .btn {
    font-size: 0.8125rem;
    padding: 0.25rem 0.5rem;
}
.lang-switch .btn.active {
    background: var(--sd-primary);
    color: #fff;
}
