/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #0f5132;
    /* Deep green from image */
    --accent-green: #e6f0eb;
    /* Light green bg */
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    font-size: 0.95rem;
    /* Medium font size request */
    overflow-x: hidden;
}

/* TYPOGRAPHY CONTROL (No massive fonts) */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    line-height: 1.6;
    color: var(--text-muted);
}

/* CUSTOM BUTTONS */
.btn-primary-custom {
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: white;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #0b3d26;
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* NAVBAR */
.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
}

/* HERO SECTION */
.hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.avatar-group img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.8rem;
}

/* HERO IMAGE COMPOSITION */
.hero-img-container {
    position: relative;
}

.hero-main-img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    height: 400px;
}

/* Floating Card 1 */
.float-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 30px;
    left: -30px;
    width: 180px;
    z-index: 2;
}

/* LOGO STRIP */
.logo-strip {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.partner-logo {
    opacity: 0.5;
    height: 25px;
    margin: 0 20px;
    filter: grayscale(100%);
}

/* FEATURES GRID */
.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* SPLIT SECTION */
.split-section {
    padding: 80px 0;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.check-list i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 1.1rem;
}

.stat-item h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* INTEGRATION ICONS */
.integration-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .float-card {
        display: none;
    }

    /* Hide floating UI on small screens */
    .hero-main-img {
        margin-top: 30px;
    }

    h1 {
        font-size: 1.8rem;
    }
}

/* Auth Helper */
.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}