/* style.css */
:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #38bdf8;
    --text: #334155;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

/* Navbar Layout Fix */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 70px; /* Fixed height to keep it consistent */
}

/* Responsive Logo Scaling */
.logo img {
    height: 45px; /* Keeps it from overlapping text on mobile */
    width: auto;
    display: block;
}

/* Navigation Links Fix for Small Screens */
nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

nav ul li a {
    font-size: 0.85rem; /* Smaller text for mobile fit */
    text-decoration: none;
    color: #334155;
    font-weight: 600;
}

/* Desktop Scaling */
@media (min-width: 768px) {
    .logo img {
        height: 60px; /* Larger logo for desktop */
    }
    nav ul {
        gap: 30px;
    }
    nav ul li a {
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn-main {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main:hover { background: var(--accent); }

/* Features */
.features { padding: 80px 0; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.card.highlight { border: 2px solid var(--primary); }
.card h3 { margin-bottom: 10px; color: var(--dark); }

/* CTA Section */
.cta-section { background: #f1f5f9; padding: 80px 0; text-align: center; }
.cta-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.lead-gen-form { margin-top: 25px; display: flex; justify-content: center; gap: 10px; }
input[type="email"] {
    padding: 15px;
    width: 300px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.btn-submit {
    background: var(--dark);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

footer { text-align: center; padding: 40px 0; font-size: 0.9rem; color: #94a3b8; }
