/* ─── Shared base ─────────────────────────────────────────── */
body { font-family: 'Inter', system-ui, sans-serif; }

/* Navbar */
#mainNav { transition: box-shadow .3s, background .3s; }
#mainNav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

/* WhatsApp float */
#wa-float { box-shadow: 0 4px 20px rgba(37,211,102,.5); }

/* Hover lifts */
.lift { transition: transform .25s, box-shadow .25s; }
.lift:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.10); }

/* ─── Landing – selection cards ──────────────────────────── */
.sel-card { cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.sel-card.active { border-color: #059669 !important; background: #ECFDF5; color: #047857; }
.sel-card.active .sel-icon { color: #059669; }
.sel-card.active .sel-label { color: #047857; font-weight: 700; }

.bill-pill { cursor: pointer; transition: all .2s; }
.bill-pill.active { background: #059669; color: white; border-color: #059669; }

.state-btn { cursor: pointer; transition: all .15s; }
.state-btn.active { background: #059669; color: white; border-color: #059669; }

/* Landing – step connector line */
.step-line::after {
    content: '';
    position: absolute;
    top: 28px; left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, #D1FAE5, #D1FAE5);
    border-top: 2px dashed #6EE7B7;
}
@media (max-width: 1023px) { .step-line::after { display: none; } }

/* Landing – range slider */
input[type=range] { accent-color: #059669; }

/* Landing – savings bar animation */
.savings-bar { transition: width 1s ease; }

/* Landing – featured package card */
.pkg-featured { background: linear-gradient(145deg, #065f46 0%, #047857 100%); }

/* Landing – form field focus */
.field:focus { outline: none; border-color: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,.15); }

/* Landing – 6-phase chevron bar */
.phase-bar { display: flex; align-items: stretch; }
.phase-step {
    flex: 1; min-width: 0;
    height: 60px;
    background: #059669;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: .78rem;
    letter-spacing: .02em; text-align: center; padding: 0 6px;
    position: relative;
    clip-path: polygon(22px 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%, 22px 50%);
    margin-left: -20px;
}
.phase-step:first-child {
    clip-path: polygon(0% 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%);
    margin-left: 0; border-radius: 10px 0 0 10px; padding-left: 12px;
}
.phase-step:nth-child(2n) { background: #047857; }
.phase-step:nth-child(1){z-index:6} .phase-step:nth-child(2){z-index:5}
.phase-step:nth-child(3){z-index:4} .phase-step:nth-child(4){z-index:3}
.phase-step:nth-child(5){z-index:2} .phase-step:nth-child(6){z-index:1}

/* ─── Portfolio – filter pills ───────────────────────────── */
.filter-pill { cursor: pointer; transition: all .2s; }
.filter-pill.active { background: #059669; color: #fff; border-color: #059669; }

/* Portfolio – project card image placeholder */
.proj-img {
    width: 100%; aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}

/* Portfolio – lightbox */
#lightbox { transition: opacity .25s; }
