:root {
    --brand-green: #556b3b;
    --brand-dark: #2f3a28;
    --brand-tan: #efe6d7;
    --brand-cream: #faf7f1;
    --brand-rust: #9e5b34;
    --text-dark: #24311f;
    --muted: #5f695b;
    --shadow: 0 10px 30px rgba(36, 49, 31, 0.10);
    --radius: 18px;
}

html, body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--brand-cream);
    color: var(--text-dark);
}

a {
    color: var(--brand-green);
}

    a:hover {
        color: var(--brand-rust);
    }

.loading-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
    color: white;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    background: rgba(250,247,241,.96);
    border-bottom: 1px solid rgba(47,58,40,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--brand-green), var(--brand-dark));
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.brand-text {
    line-height: 1.05;
}

    .brand-text strong {
        display: block;
        color: var(--brand-dark);
        font-size: 1rem;
    }

    .brand-text span {
        color: var(--muted);
        font-size: .82rem;
    }

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    border-radius: 999px;
    padding: .65rem 1rem !important;
}

    .nav-link:hover,
    .nav-link.active {
        background: rgba(85,107,59,.10);
        color: var(--brand-green) !important;
    }

.btn-brand {
    background: linear-gradient(145deg, var(--brand-green), #6c814f);
    border: none;
    color: white;
    border-radius: 999px;
    padding: .85rem 1.35rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

    .btn-brand:hover {
        color: white;
        transform: translateY(-1px);
    }

.btn-outline-brand {
    border: 2px solid rgba(85,107,59,.3);
    color: var(--brand-dark);
    background: white;
    border-radius: 999px;
    padding: .85rem 1.35rem;
    font-weight: 700;
}

.hero {
    background: radial-gradient(circle at top right, rgba(255,255,255,.25), transparent 30%), linear-gradient(135deg, var(--brand-dark), var(--brand-green));
    color: white;
    padding: 5.5rem 0 4.5rem;
}

.hero-card, .content-card, .price-card, .contact-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(47,58,40,.06);
    color:black;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: .45rem .85rem;
    font-size: .92rem;
    margin-bottom: 1rem;
}

.section-pad {
    padding: 4rem 0;
}

.section-soft {
    background: var(--brand-tan);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--brand-dark);
}

.section-lead {
    color: var(--muted);
    font-size: 1.08rem;
}

.feature-card, .step-card, .service-card {
    height: 100%;
    background: rgba(255,255,255,.88);
    border-radius: var(--radius);
    border: 1px solid rgba(47,58,40,.08);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.icon-pill {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(85,107,59,.18), rgba(158,91,52,.12));
    color: var(--brand-green);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price-card {
    padding: 2rem;
    height: 100%;
}

    .price-card.featured {
        background: linear-gradient(180deg, #fff, #f7f2e9);
        border: 2px solid rgba(85,107,59,.22);
    }

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.list-check {
    list-style: none;
    padding-left: 0;
}

    .list-check li {
        padding-left: 1.8rem;
        position: relative;
        margin-bottom: .7rem;
        color: var(--text-dark);
    }

        .list-check li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--brand-green);
            font-weight: 800;
        }

.cta-band {
    background: linear-gradient(135deg, var(--brand-rust), #b56c40);
    color: white;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.footer {
    margin-top: auto;
    background: var(--brand-dark);
    color: rgba(255,255,255,.88);
    padding: 1.5rem 0;
}

    .footer a {
        color: #fff;
    }

.contact-card {
    padding: 2rem;
}

.form-control, .form-select {
    border-radius: 14px;
    padding: .85rem 1rem;
    border: 1px solid rgba(47,58,40,.15);
}

    .form-control:focus, .form-select:focus {
        border-color: rgba(85,107,59,.55);
        box-shadow: 0 0 0 .25rem rgba(85,107,59,.12);
    }

.small-muted {
    color: var(--muted);
}

#blazor-error-ui {
    background: #fff3cd;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 767.98px) {
    .hero {
        padding: 4.5rem 0 3.5rem;
    }

    .section-pad {
        padding: 3rem 0;
    }
}
