/* File: public/css/landing-style.css */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5em;
    color: #ff7300;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar-links a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}
.navbar-links a:hover {
    color: #ff7300;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary {
    background-color: #ff7300;
    color: #fff;
}
.btn-primary:hover {
    background-color: #333;
}
.btn-secondary {
    background-color: #e9ecef;
    color: #333;
}
.btn-secondary:hover {
    background-color: #dce1e6;
}
.btn-large {
    font-size: 1.1em;
    padding: 15px 30px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    background-color: #fff;
}
.hero h1 {
    font-size: 3em;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #222;
}
.hero .subtitle {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    text-align: center;
}
.features h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.feature-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}
.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}
.pricing h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.pricing-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s;
}
.pricing-card.popular {
    border-color: #4a90e2;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(74,144,226,0.15);
}
.pricing-card h3 {
    font-size: 1.5em;
}
.pricing-card .price {
    font-size: 2.5em;
    font-weight: 700;
    margin: 20px 0;
    color: #ff7300;
}
.pricing-card .price span:not(:first-child) {
    font-size: 0.5em;
    font-weight: 400;
    color: #ff7300;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}
.pricing-card ul li {
    margin-bottom: 15px;
    color: #555;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    color: #777;
    border-top: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}
