:root {
    --primary-green: #4CAF50;
    --dark-blue: #1A2B3C;
    --text-grey: #666;
    --light-bg: #F9FAFB;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--dark-blue);
    overflow-x: hidden;
}

/* Navbar Precisely Designed */
header {
    padding: 15px 10%;
    background: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-grey);
    font-size: 14px;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    text-decoration: none;
    color: var(--primary-green); /* As requested: Green text */
    font-weight: 600;
    font-size: 14px;
}

.btn-signup {
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 80px 10%;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.green-text { color: var(--primary-green); }

.btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
}

/* Client Section */
.clients {
    text-align: center;
    padding: 50px 0;
}

.client-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    opacity: 0.6;
}

/* Feature Cards */
.manage-platform {
    text-align: center;
    padding: 80px 10%;
    background-color: var(--light-bg);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.f-card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.icon-box {
    color: var(--primary-green);
    font-size: 30px;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    display: flex;
    padding: 100px 10%;
    justify-content: space-between;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-box span {
    font-size: 32px;
    font-weight: 800;
    display: block;
}