.navbar {
    background: #c77e03;
}

.navbar-brand {
    color: white !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

.nav-link {
    color: white !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.nav-link:hover {
    opacity: 0.8;
}

.navbar .btn-primary {
    background: #ECFD94;
    color: black;
    border: none;
}

.navbar .btn-primary:hover {
    background-color: #cddc39;
    color: #1f2937;
}

body {
    font-family: 'Inter', sans-serif;
}

/* =========================
   HERO
========================= */

#hero {
    padding: 60px 0 80px;
    text-align: center;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 15px;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-screenshot {
    margin-bottom: 30px;
}

.hero-screenshot img {
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.btn-start {
    background: #ECFD94;
    color: #1f2937;
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
}

.btn-start:hover {
    background: #cddc39;
    color: #1f2937;
}

/* =========================
   FEATURES
========================= */

#features {
    background: #69c3bc;
    padding: 80px 0;
}

.features-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.feature-card {
    background: #ECFD94;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-card p {
    font-size: 0.9rem;
    color: #374151;
    margin: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* =========================
   EXPORT REPORTS
========================= */

#export-reports {
    background: #c77e03;
    padding: 80px 0;
    text-align: center;
}

.export-title {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.export-description {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.export-icon {
    width: 120px;
    transition: all 0.3s ease;
}

.export-icon:hover {
    transform: scale(1.08);
}

/* =========================
   PRICING
========================= */

#pricing {
    padding: 100px 0;
}

.pricing-banner {
    max-width: 500px;
    margin: auto;
    background: #c77e03;
    color: white;
    text-align: center;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
}

.pricing-card {
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bamboo {
    background: #e6c62d;
}

.baobab {
    background: #d9e86c;
}

.pricing-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-features {
    margin-top: 25px;
    text-align: left;
    flex-grow: 1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #c77e03;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.footer {
    background: #c77e03;
    color: white;
    padding: 60px 0 20px;
}

.footer h3,
.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 10px;
}

.footer hr {
    margin-top: 40px;
    margin-bottom: 20px;
    opacity: 0.2;
}

.footer-bottom {
    font-size: 14px;
}