:root {
    --w-green-900: #0f2a1d;
    --w-green-800: #1b4332;
    --w-green-700: #2d5a3d;
    --w-green-600: #3d6b35;
    --w-lime-500: #7cb342;
    --w-lime-400: #a8d85c;
    --w-cream: #f6f9f2;
    --w-sand: #eef3e6;
    --w-ink: #1f2a24;
    --w-muted: #5b6b62;
}

body.warmes-web {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--w-ink);
    background: #fff;
    overflow-x: hidden;
}

.warmes-web a {
    text-decoration: none;
}

/* ---------- Navbar ---------- */
.web-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.web-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--w-green-800);
    letter-spacing: -0.02em;
    margin-right: 0;
}

.web-brand img {
    width: 36px;
    height: 36px;
}

.web-navbar-toggler {
    border: 1px solid rgba(27, 67, 50, 0.15);
    border-radius: 0.55rem;
    padding: 0.35rem 0.55rem;
    color: var(--w-green-800);
    box-shadow: none;
}

.web-navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(124, 179, 66, 0.25);
}

.web-navbar-toggler .bi {
    font-size: 1.5rem;
    line-height: 1;
}

.web-navbar .nav-link {
    color: var(--w-green-800);
    font-weight: 600;
    padding: 0.65rem 0.9rem;
    border-radius: 0.5rem;
}

.web-navbar .nav-link:hover,
.web-navbar .nav-link.active {
    color: var(--w-lime-500);
    background: var(--w-sand);
}

.web-navbar-actions .btn {
    min-width: 8.5rem;
    text-align: center;
}

@media (max-width: 991.98px) {
    .web-navbar .navbar-collapse {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(27, 67, 50, 0.1);
    }

    .web-navbar .navbar-nav {
        width: 100%;
    }

    .web-navbar .nav-item {
        width: 100%;
    }

    .web-navbar .nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 0.5rem;
        font-size: 1.05rem;
    }

    .web-navbar-actions {
        width: 100%;
    }

    .web-navbar-actions .btn {
        width: 100%;
        min-width: 0;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }
}

@media (min-width: 992px) {
    .web-navbar-actions .btn {
        min-width: auto;
    }
}

.btn-web-primary {
    background: var(--w-lime-500);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 0.65rem;
    padding: 0.6rem 1.3rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-web-primary:hover {
    background: var(--w-green-600);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(61, 107, 53, 0.28);
}

.btn-web-outline {
    border: 2px solid var(--w-green-800);
    color: var(--w-green-800);
    font-weight: 700;
    border-radius: 0.65rem;
    padding: 0.55rem 1.25rem;
    background: transparent;
    transition: all 0.15s ease;
}

.btn-web-outline:hover {
    background: var(--w-green-800);
    color: #fff;
}

/* ---------- Hero ---------- */
.web-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(100deg, rgba(15, 42, 29, 0.92) 0%, rgba(27, 67, 50, 0.78) 42%, rgba(27, 67, 50, 0.25) 100%),
        url("../img/web/web-hero-garden-house.png") center/cover no-repeat;
}

.web-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(168, 216, 92, 0.2);
    border: 1px solid rgba(168, 216, 92, 0.5);
    color: var(--w-lime-400);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.web-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}

.web-hero p.lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 33rem;
}

.web-hero__stats {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.web-hero__stats .num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--w-lime-400);
}

.web-hero__stats .lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Section helpers ---------- */
.web-section {
    padding: 5.5rem 0;
}

.web-section--alt {
    background: var(--w-cream);
}

.web-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--w-lime-500);
}

.web-section h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: -0.02em;
    color: var(--w-green-800);
}

.web-section .section-sub {
    color: var(--w-muted);
    font-size: 1.05rem;
    max-width: 40rem;
}

/* ---------- Feature cards ---------- */
.feature-card {
    background: #fff;
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: 1.1rem;
    padding: 1.8rem;
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(27, 67, 50, 0.12);
    border-color: rgba(124, 179, 66, 0.4);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--w-green-600), var(--w-lime-500));
    margin-bottom: 1.1rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--w-green-800);
}

.feature-card p {
    color: var(--w-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---------- Showcase / screenshots ---------- */
.web-shot {
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(15, 42, 29, 0.18);
    border: 1px solid rgba(27, 67, 50, 0.08);
    width: 100%;
}

.web-shot--float {
    transition: transform 0.3s ease;
}

.web-shot--float:hover {
    transform: scale(1.01);
}

.web-mobile-shot {
    max-width: 270px;
    width: 100%;
    filter: drop-shadow(0 24px 45px rgba(15, 42, 29, 0.28));
}

/* ---------- Gallery ---------- */
.web-gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.web-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.web-gallery-item:hover img {
    transform: scale(1.08);
}

.web-gallery-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem 1rem 0.9rem;
    background: linear-gradient(transparent, rgba(15, 42, 29, 0.85));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.web-app-shot img {
    width: 100%;
    height: auto;
}

/* ---------- Pricing ---------- */
.price-card {
    background: #fff;
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 1.2rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(27, 67, 50, 0.12);
}

.price-card--featured {
    border: 2px solid var(--w-lime-500);
    box-shadow: 0 18px 44px rgba(124, 179, 66, 0.22);
    position: relative;
}

.price-card__tag {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--w-lime-500);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    letter-spacing: 0.03em;
}

.price-card h3 {
    font-weight: 800;
    color: var(--w-green-800);
}

.price-card .price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--w-green-800);
    line-height: 1;
}

.price-card .price small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--w-muted);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0;
    flex: 1;
}

.price-card ul li {
    padding: 0.45rem 0;
    color: var(--w-ink);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.price-card ul li i {
    color: var(--w-lime-500);
    margin-top: 0.15rem;
}

/* ---------- Steps ---------- */
.web-step {
    text-align: center;
    padding: 1rem;
}

.web-step__num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, var(--w-green-700), var(--w-lime-500));
}

/* ---------- CTA band ---------- */
.web-cta {
    background:
        linear-gradient(105deg, rgba(15, 42, 29, 0.95), rgba(45, 90, 61, 0.85)),
        url("../img/web/web-designed-garden.png") center/cover no-repeat;
    color: #fff;
    border-radius: 1.5rem;
    padding: 3.5rem;
}

/* ---------- Footer ---------- */
.web-footer {
    background: var(--w-green-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 1.5rem;
}

.web-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.web-footer a:hover {
    color: var(--w-lime-400);
}

.web-footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ---------- Auth-like checkout ---------- */
.checkout-summary {
    background: var(--w-cream);
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 1.1rem;
    padding: 1.6rem;
    position: sticky;
    top: 90px;
}

.testimonial-card {
    background: #fff;
    border-radius: 1.1rem;
    padding: 1.8rem;
    border: 1px solid rgba(27, 67, 50, 0.08);
    height: 100%;
}

.testimonial-card .stars {
    color: #f5a623;
}

@media (max-width: 991px) {
    .web-hero {
        min-height: auto;
        padding: 4.5rem 0;
    }

    .checkout-summary {
        position: static;
    }
}
