/* ==========================================================================
   Home page specific styles
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0F2C5C 0%, var(--wt-blue-deep) 38%, var(--wt-blue) 78%);
    color: var(--wt-white);
    padding-top: 76px;
    padding-bottom: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 70px;
}
.hero-copy .eyebrow { background: rgba(255,255,255,0.14); color: var(--wt-white); }
.hero-copy .eyebrow .dot { background: #FF5C56; }
.hero h1 { color: var(--wt-white); margin-bottom: 20px; }
.hero h1 .accent { color: #6FE39A; }
.hero-copy p.lead {
    font-size: 1.16rem;
    color: rgba(255,255,255,0.86);
    max-width: 520px;
    margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-points {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.hero-point svg { width: 18px; height: 18px; color: #6FE39A; flex-shrink: 0; }

.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-card {
    background: var(--wt-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    position: relative;
}
.hero-card-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--wt-line);
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row .dotnum {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--wt-blue-soft);
    color: var(--wt-blue);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.hero-card-row.is-done .dotnum { background: var(--wt-green); color: var(--wt-white); }
.hero-card-row strong { display: block; font-family: var(--font-display); font-size: 0.96rem; color: var(--wt-ink); }
.hero-card-row span { font-size: 0.84rem; color: var(--wt-slate-light); }
.hero-card-pin {
    position: absolute;
    bottom: -22px;
    right: 18px;
    background: var(--wt-green);
    color: var(--wt-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.84rem;
    padding: 11px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-card-pin svg { width: 16px; height: 16px; }

/* wave divider from hero into next section */
.hero-wave {
    display: block;
    width: 100%;
    height: 64px;
}

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; padding-bottom: 50px; }
    .hero-art { margin-top: 10px; }
}

@media (max-width: 600px) {
    .hero { padding-top: 56px; }
    .hero-grid { padding-bottom: 36px; gap: 30px; }
    .hero-copy p.lead { font-size: 0.98rem; margin-bottom: 22px; }
    .hero-points { gap: 16px; }
    .hero-point { font-size: 0.82rem; }
    .hero-point svg { width: 15px; height: 15px; }
    .hero-card-pin { font-size: 0.76rem; padding: 9px 14px; }
}

/* ---------- "How it works" route ---------- */
.route-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.route-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 6%;
    right: 6%;
    height: 0;
    border-top: 2.5px dashed var(--wt-line);
    z-index: 0;
}
.route-step { position: relative; z-index: 1; text-align: center; }
.route-step .step-dot {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--wt-white);
    border: 2.5px solid var(--wt-blue);
    color: var(--wt-blue);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-display);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}
.route-step:nth-child(2) .step-dot { border-color: var(--wt-green); color: var(--wt-green-deep); }
.route-step:nth-child(3) .step-dot { border-color: var(--wt-red); color: var(--wt-red); }
.route-step:nth-child(4) .step-dot { border-color: var(--wt-blue); color: var(--wt-blue); }
.route-step h4 { margin-bottom: 8px; }
.route-step p { font-size: 0.92rem; }

@media (max-width: 860px) {
    .route-steps { grid-template-columns: 1fr 1fr; }
    .route-steps::before { display: none; }
}
@media (max-width: 560px) {
    .route-steps { grid-template-columns: 1fr; }
}

/* ---------- Service area strip ---------- */
.coverage-strip {
    background: var(--wt-blue-deep);
    color: var(--wt-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.coverage-strip::after {
    content: '';
    position: absolute;
    left: -60px; bottom: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(111,227,154,0.18), transparent 70%);
}
.coverage-strip h2 { color: var(--wt-white); }
.coverage-strip p { color: rgba(255,255,255,0.82); }
.coverage-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.coverage-chips span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.86rem;
    font-family: var(--font-display);
}
@media (max-width: 860px) {
    .coverage-strip { grid-template-columns: 1fr; padding: 36px 28px; }
}

/* ---------- Testimonial / trust strip ---------- */
.trust-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 38px 0;
}
.trust-item { text-align: center; flex: 1; min-width: 140px; }
.trust-item .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--wt-blue);
    display: block;
}
.trust-item .lbl { font-size: 0.88rem; color: var(--wt-slate-light); }

/* .cta-banner moved to style.css (used sitewide, not just home page) */
