/* ── Ecosystem Homepage CSS ── */
/* Extracted from Hompage-chung.html (lines 372–701)            */
/* Scope: eco-* prefixed classes + accent helper + bv1–bv6      */
/* visual-block helpers + @media rules containing eco-* selectors */
/* NOTE: :root variables are NOT duplicated — already in v2-core.css */

/* ── ACCENT HELPER (used inside eco-* headings) ── */
.accent { color: #E8175D; font-style: normal; }

/* ── ECO HERO ── */
.eco-hero {
    position: relative;
    padding: 96px 64px 80px;
    background: linear-gradient(180deg, #fff 0%, #FFF8FA 100%);
    overflow: hidden;
}
.eco-hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 23, 93, 0.10) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}
.eco-hero::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.18) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}
.eco-hero-in {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.eco-hero h1 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #111;
    line-height: 1.05;
    margin-bottom: 20px;
}
.eco-hero h1 .accent { color: #E8175D; font-style: normal; }
.eco-hero p.lead {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    line-height: 1.65;
    max-width: 660px;
    margin: 0 auto 32px;
}

/* ── ECO PILL (hero eyebrow badge) ── */
.eco-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 9999px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.eco-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E8175D;
}

/* ── ECO CTA ROW ── */
.eco-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

/* ── ECO STATS ── */
.eco-stats {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
    margin-top: 8px;
}
/* .eco-stat uses shared .num and .lbl3 classes for its inner text */
.eco-stat .num {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    letter-spacing: -1px;
    line-height: 1;
}
.eco-stat .lbl3 {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── ECO TRUST BAR ── */
.eco-trust { padding: 64px 64px; background: #fff; }
.eco-trust-in { max-width: 1200px; margin: 0 auto; }
.eco-trust-h {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    text-align: center;
    margin-bottom: 24px;
}

/* Logo-marquee item styles (.li-logo) moved to core/v2-core.css so non-ecosystem
   pages (e.g. pricing) hosting the shared trust-logos partial pick them up too. */

/* ── ECO APPS SECTION ── */
.eco-apps { padding: 96px 64px; background: #fff; }
.eco-apps-in { max-width: 1200px; margin: 0 auto; }
.eco-apps-head { text-align: center; margin-bottom: 56px; }
.eco-apps-head .lbl { margin-bottom: 14px; }
.eco-apps-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 12px;
}
.eco-apps-head p {
    font-size: 17px;
    font-weight: 600;
    color: #555;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto;
}
.eco-apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.eco-app {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.04);
    transition: transform 220ms ease, box-shadow 220ms ease;
    display: flex;
    flex-direction: column;
}
.eco-app:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 24px 56px rgba(0, 0, 0, 0.06);
}
.eco-app-body-v {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #fff;
    gap: 24px;
}
.eco-app-head-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 22px;
    align-items: center;
}
.eco-app-logo-l {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
}
.eco-app-logo-img {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: block;
}
.eco-app-name-r {
    display: flex;
    flex-direction: column;
    min-width: 0;
    justify-content: center;
    gap: 10px;
}
.eco-app-name-r h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}
.eco-app-bottom { display: flex; flex-direction: column; flex: 1; }
.eco-app-bottom .desc {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    line-height: 1.65;
    margin-bottom: 18px;
}
.eco-app-cover {
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}
.eco-app-cover.a { background: linear-gradient(135deg, #FF5E7E 0%, #E8175D 100%); }
.eco-app-cover.b { background: linear-gradient(135deg, #FF7585 0%, #E8175D 100%); }
.eco-app-cover::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    bottom: -130px;
    right: -130px;
}
.eco-app-icon {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 2;
    font-size: 74px;
    line-height: 1;
}
.eco-app-icon-img {
    width: 160px;
    height: 160px;
    border-radius: 32px;
    display: block;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 2;
    object-fit: cover;
}
.eco-app-body {
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.eco-app-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF0F4;
    color: #E8175D;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 9999px;
    width: fit-content;
    margin-bottom: 14px;
}
.eco-app h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 11px;
    letter-spacing: -0.3px;
}
.eco-app p.desc {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.eco-app-bullets { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.eco-app-bullet {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
.eco-app-bullet .chk2 { color: #22C55E; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.v2-page .eco-app-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    background: #E8175D;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 11px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(232, 23, 93, 0.3);
    transition: background 200ms, transform 150ms;
}
.v2-page .eco-app-cta:hover { background: #C4104A; transform: translateY(-1px); }
.v2-page .eco-app-cta.outline {
    background: #fff;
    color: #E8175D;
    border: 2px solid #E8175D;
    box-shadow: none;
}
.v2-page .eco-app-cta.outline:hover { background: #FFF0F4; }

/* ── ECO BEN (Benefits of Both Apps) ── */
.eco-ben { padding: 96px 64px; background: #fff; }
.eco-ben-in { max-width: 1240px; margin: 0 auto; }
.eco-ben-head { text-align: center; margin-bottom: 72px; }
.eco-ben-head .lbl { display: inline-block; margin-bottom: 14px; }
.eco-ben-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1.12;
    margin-bottom: 14px;
}
.eco-ben-head h2 .accent { color: #E8175D; font-style: normal; }
.eco-ben-head p {
    font-size: 17px;
    font-weight: 600;
    color: #555;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}
.eco-ben-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 48px 0;
}
.eco-ben-block.flip .eco-ben-copy { order: 2; }
.eco-ben-block.flip .eco-ben-vis { order: 1; }
.eco-ben-eyebrow {
    font-size: 13px;
    font-weight: 800;
    color: #E8175D;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.eco-ben-copy h3 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.8px;
    line-height: 1.1;
    margin-bottom: 18px;
}
.eco-ben-copy p.body {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 520px;
}
.eco-ben-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.eco-ben-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid #E8E8E8;
    background: #fff;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    transition: all 200ms;
}
.eco-ben-chip:hover { border-color: #E8175D; color: #E8175D; background: #FFF0F4; }
.v2-page .eco-ben-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8175D;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 13px 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(232, 23, 93, 0.32);
    transition: background 200ms, transform 150ms;
}
.v2-page .eco-ben-cta:hover { background: #C4104A; transform: translateY(-1px); }
.eco-ben-vis {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── BENEFIT BLOCK VISUALS (bv1–bv6) ── */

/* Float keyframe shared by all bv cards */
@keyframes bvFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

/* bv1 — pickup locations map */
.bv1-stage {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 620px;
    margin: 0 auto;
}
.bv1-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.bv1-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 18px 22px;
    z-index: 2;
}
.bv1-card-h  { font-size: 13px; font-weight: 900; color: #E8175D; letter-spacing: 0.8px; margin-bottom: 8px; }
.bv1-card-sub { font-size: 12px; font-weight: 800; color: #1A1A1A; margin-bottom: 10px; }
.bv1-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.bv1-pills span {
    background: #F4F4F4;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    color: #1A1A1A;
    white-space: nowrap;
}
.bv1-pin {
    position: absolute;
    width: 46px;
    height: 46px;
    background: #E8175D;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(232, 23, 93, 0.45);
    top: -22px;
    right: -22px;
    z-index: 3;
}
.bv1-pin svg { width: 22px; height: 22px; }
.bv1-pin.outline { background: #fff; border: 2.5px solid #E8175D; }
.bv1-pin.outline svg path { fill: #E8175D; }
.bv1-c1 { top: 0;    right: 0; width: 300px; animation: bvFloat 4s ease-in-out infinite; }
.bv1-c2 { top: 240px; right: 0; width: 330px; animation: bvFloat 4s ease-in-out infinite 0.7s; }
.bv1-c3 { bottom: 0; left: 0;  width: 340px; animation: bvFloat 4s ease-in-out infinite 1.4s; }
.bv1-c3-h       { font-size: 14px; font-weight: 900; color: #1A1A1A; margin-bottom: 8px; }
.bv1-c3-divider { height: 1px; background: #E8E8E8; margin-bottom: 10px; }
.bv1-c3-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}
.bv1-c3-row .ad { color: #888; font-weight: 600; }
.bv1-c3-add {
    font-size: 12px;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bv1-c3-add::before { content: '+'; color: #E8175D; font-weight: 900; font-size: 14px; }
.bv1-c4 {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #111;
    padding: 14px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    z-index: 2;
    animation: bvFloat 4s ease-in-out infinite 2.1s;
}
.bv1-c4 .plus {
    width: 22px;
    height: 22px;
    background: #E8175D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}
.bv1-c4-t { font-size: 14px; font-weight: 900; color: #111; }

/* bv2 — delivery widget */
.bv2 {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 14px;
    width: 100%;
    max-width: 540px;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.bv2-l { padding: 8px; background: #fff; border: 1px solid #F0F0F0; border-radius: 12px; }
.bv2-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
}
.bv2-cal-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 0 4px;
}
.bv2-cal-nav {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}
.bv2-cal-m { font-size: 13px; font-weight: 800; color: #111; }
.bv2-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 10px; }
.bv2-cal-d {
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    color: #888;
}
.bv2-cal-d.head    { font-size: 8px; color: #888; text-transform: uppercase; }
.bv2-cal-d.on      { color: #E8175D; font-weight: 900; }
.bv2-cal-d.sel     { background: #E8175D; color: #fff; font-weight: 900; }
.bv2-cal-d.sel.special { position: relative; }
.bv2-cal-d.sel.special::after {
    content: '+$10';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6px;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 3px;
    border-radius: 3px;
}
.bv2-time-h {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 6px;
}
.bv2-slot {
    padding: 8px 10px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}
.bv2-slot.on { background: #E8175D; color: #fff; border-color: #E8175D; }
.bv2-r { padding: 8px; }
.bv2-prod {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 11px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 11px;
}
.bv2-prod-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFE0EB, #FFCCD9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.bv2-prod-n  { font-size: 12px; font-weight: 800; color: #111; }
.bv2-prod-p  { font-size: 11px; font-weight: 700; color: #555; margin-top: 2px; }
.bv2-prod-qty {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    color: #888;
    padding: 2px 8px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
}
.bv2-lbl { font-size: 10px; font-weight: 800; color: #111; margin-bottom: 7px; }
.bv2-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 11px; }
.bv2-method {
    padding: 8px 4px;
    border: 1px solid #E8E8E8;
    border-radius: 7px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: #888;
}
.bv2-method.on { background: #E8175D; color: #fff; border-color: #E8175D; }
.bv2-method-ico { font-size: 14px; margin-bottom: 2px; display: block; }
.bv2-zip { display: flex; gap: 5px; margin-bottom: 7px; }
.bv2-zip input {
    flex: 1;
    padding: 7px 9px;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #111;
    font-family: 'Nunito', sans-serif;
    outline: none;
}
.bv2-zip-btn {
    padding: 7px 12px;
    background: #E8175D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
}
.bv2-ok { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: #22C55E; margin-bottom: 10px; }

/* bv3 — working days settings */
.bv3 {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
}
.bv3-h { font-size: 18px; font-weight: 800; color: #111; margin-bottom: 14px; }
.bv3-radio-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.bv3-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #E0E0E0;
    flex-shrink: 0;
    position: relative;
}
.bv3-radio.on { border-color: #E8175D; }
.bv3-radio.on::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #E8175D;
    border-radius: 50%;
}
.bv3-bar { flex: 1; height: 8px; background: #E8E8E8; border-radius: 9999px; }
.bv3-bar.short { max-width: 60%; }
.bv3-section { margin-top: 18px; margin-bottom: 6px; }
.bv3-section h4 { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 10px; }
.bv3-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1A1A1A;
}
.bv3-field-l { color: #555; }
.bv3-field-r { display: flex; align-items: center; gap: 5px; color: #888; font-weight: 600; }
.bv3-check-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.bv3-check {
    width: 18px;
    height: 18px;
    background: #E8175D;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}
.bv3-check-lbl { font-size: 14px; font-weight: 800; color: #111; }
.bv3-slots-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.bv3-slot { display: flex; flex-direction: column; font-size: 10px; color: #555; font-weight: 700; }
.bv3-slot-val {
    padding: 7px 9px;
    border: 1px solid #E8E8E8;
    border-radius: 7px;
    margin-top: 4px;
    font-size: 11px;
    color: #111;
    font-weight: 700;
    background: #fff;
}

/* bv4 — time slot widget with "final slot" badge */
.bv4 {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    position: relative;
}
.bv4-h { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 12px; }
.bv4-dur { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.bv4-dur-opt {
    padding: 10px;
    border: 1px solid #E8E8E8;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: #555;
    cursor: pointer;
    transition: all 150ms;
}
.bv4-dur-opt:hover,
.bv4-dur-opt.on { border-color: #E8175D; color: #E8175D; }
.bv4-time-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.bv4-time-t { font-size: 15px; font-weight: 800; color: #111; }
.bv4-time-fmt {
    display: flex;
    background: #F4F4F4;
    border-radius: 9999px;
    padding: 3px;
    font-size: 10px;
    font-weight: 700;
}
.bv4-time-fmt span { padding: 3px 9px; border-radius: 9999px; color: #888; }
.bv4-time-fmt span.on { background: #fff; color: #111; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.bv4-slot4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    position: relative;
}
.bv4-slot4.sel { background: #FFF0F4; border-color: #E8175D; color: #E8175D; }
.bv4-slot4-left  { font-size: 13px; font-weight: 800; }
.bv4-slot4-right {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border: 1px solid #E8E8E8;
    border-radius: 9999px;
    color: #555;
}
.bv4-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    margin: 14px 0 9px;
}
.bv4-divider::before,
.bv4-divider::after { content: ''; flex: 1; height: 1px; background: #E8E8E8; }
.bv4-final-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #FF4500, #FFD600);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 11px;
    border-radius: 9999px;
    box-shadow: 0 3px 10px rgba(255, 69, 0, 0.35);
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.bv4-final-badge::after { content: '🔥'; margin-left: 4px; }

/* bv5 — booking detail table */
.bv5 {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.bv5-actions {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid #F0F0F0;
    background: #FAFAFB;
}
.bv5-act {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid #E8E8E8;
    background: #fff;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 800;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 150ms;
}
.bv5-act:hover { border-color: #E8175D; color: #E8175D; background: #FFF0F4; }
.bv5-act-ico { font-size: 14px; }
.bv5-head {
    display: grid;
    grid-template-columns: 24px 1.8fr 1.4fr 1.4fr;
    gap: 14px;
    padding: 11px 18px;
    background: #F4F4F4;
    font-size: 10px;
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.bv5-row {
    display: grid;
    grid-template-columns: 24px 1.8fr 1.4fr 1.4fr;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #F0F0F0;
    align-items: flex-start;
}
.bv5-row:last-child { border-bottom: none; }
.bv5-check {
    width: 18px;
    height: 18px;
    background: #111;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    margin-top: 8px;
}
.bv5-cell-prod { display: flex; gap: 10px; }
.bv5-thumb { width: 44px; height: 44px; border-radius: 7px; flex-shrink: 0; }
.bv5-thumb.t1 { background: linear-gradient(135deg, #F4D8E5, #E8B8CC); }
.bv5-thumb.t2 { background: linear-gradient(135deg, #D8E5F4, #B8CCE8); }
.bv5-prod-info { display: flex; flex-direction: column; gap: 2px; }
.bv5-prod-n   { font-size: 12px; font-weight: 800; color: #111; }
.bv5-prod-tag { font-size: 10px; font-weight: 700; color: #888; }
.bv5-slot-row {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #BFE8FA;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 9px;
    font-weight: 700;
    color: #0C7099;
    margin-top: 4px;
    width: fit-content;
}
.bv5-cell-book { font-size: 11px; font-weight: 700; color: #555; }
.bv5-pay       { color: #0C7099; font-weight: 800; font-size: 11px; margin-top: 2px; }
.bv5-cell-cust { font-size: 11px; font-weight: 700; color: #555; line-height: 1.5; }
.bv5-cust-row  { display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.bv5-cust-ico  { font-size: 11px; color: #888; }

/* bv6 — equipment booking add-on modal */
.bv6 {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    border: 1px solid #E8E8E8;
    position: relative;
    background-image: radial-gradient(circle at 90% 90%, rgba(232, 23, 93, 0.05) 0%, transparent 60%);
}
.bv6-controls {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 10px;
    color: #888;
    font-size: 13px;
}
.bv6-h { font-size: 22px; font-weight: 800; color: #111; text-align: center; margin-bottom: 22px; }
.bv6-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.5;
}
.bv6-row-cb {
    width: 20px;
    height: 20px;
    border: 1.5px solid #B0B0B0;
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 1px;
}
.bv6-row-cb.on {
    background: #E8175D;
    border-color: #E8175D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}
.bv6-link    { text-decoration: underline; color: #1A1A1A; font-weight: 800; }
.bv6-link.ds { color: #E8175D; }
.bv6-cta {
    width: 100%;
    background: #E8175D;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 13px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(232, 23, 93, 0.32);
    transition: background 200ms;
}
.bv6-cta:hover { background: #C4104A; }

/* ── ECO WHY (Why Choose DingDoong) ── */
.eco-why { padding: 96px 64px; background: #FAF7F2; }
.eco-why-in { max-width: 1240px; margin: 0 auto; }
.eco-why-head { text-align: center; margin-bottom: 56px; }
.eco-why-head .lbl { display: inline-block; margin-bottom: 14px; }
.eco-why-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1.12;
    margin-bottom: 12px;
}
.eco-why-head p {
    font-size: 17px;
    font-weight: 600;
    color: #555;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}
.eco-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.eco-why-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 30px;
    border: 1px solid #F0E8DC;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 16px 40px rgba(0, 0, 0, 0.03);
    transition: transform 240ms ease, box-shadow 240ms ease;
}
.eco-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 20px 48px rgba(0, 0, 0, 0.05);
}
.eco-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #FFF0F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: all 240ms;
}
.eco-why-card:hover .eco-why-icon { background: #E8175D; color: #fff; transform: scale(1.05); }
.eco-why-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin-bottom: 12px;
}
.eco-why-card p { font-size: 14px; font-weight: 600; color: #555; line-height: 1.7; }

/* ── ECO STORY (Brand Story) ── */
.eco-story {
    padding: 96px 64px;
    background: #FAF7F2;
    position: relative;
    overflow: hidden;
}
.eco-story::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.20) 0%, transparent 70%);
    top: -100px;
    right: -80px;
    pointer-events: none;
}
.eco-story-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.eco-story-l h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 18px;
}
.eco-story-l h2 .accent { color: #E8175D; font-style: normal; }
.eco-story-l p {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    line-height: 1.75;
    margin-bottom: 18px;
}
.eco-story-quote {
    padding: 16px 22px;
    border-left: 4px solid #E8175D;
    background: #fff;
    border-radius: 0 12px 12px 0;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    font-style: italic;
    line-height: 1.6;
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.eco-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eco-benefit {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: transform 200ms;
}
.eco-benefit:hover { transform: translateY(-3px); }
.eco-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #FFF0F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 13px;
}
.eco-benefit h4 { font-size: 15px; font-weight: 800; color: #111; margin-bottom: 6px; line-height: 1.3; }
.eco-benefit p  { font-size: 12px; font-weight: 600; color: #555; line-height: 1.6; }
.eco-benefit-num {
    font-size: 24px;
    font-weight: 900;
    color: #E8175D;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

/* ── ECO TEST (Testimonials) ── */
.eco-test { padding: 96px 64px; background: #fff; }
.eco-test-in { max-width: 1200px; margin: 0 auto; }
.eco-test-head { text-align: center; margin-bottom: 48px; }
.eco-test-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 12px;
}
.eco-test-head p { font-size: 17px; font-weight: 600; color: #555; }
.eco-test-cw { overflow: hidden; }
.eco-test-track {
    display: flex;
    gap: 22px;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.eco-test-card {
    min-width: 480px;
    background: #FFF0F4;
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.eco-test-card::before {
    content: '\201C';
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 108px;
    font-weight: 900;
    color: rgba(232, 23, 93, 0.08);
    line-height: 1;
    font-family: 'Nunito', sans-serif;
}
.eco-test-stars { font-size: 18px; margin-bottom: 13px; }
.eco-test-quote {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.eco-test-author { display: flex; align-items: center; gap: 11px; }
.eco-test-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #E8175D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}
.eco-test-name { font-size: 13px; font-weight: 800; color: #111; }
.eco-test-role { font-size: 11px; font-weight: 600; color: #888; }
.eco-test-app {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    color: #E8175D;
    background: #fff;
    padding: 3px 10px;
    border-radius: 9999px;
    border: 1px solid rgba(232, 23, 93, 0.2);
}

/* ── ECO CONTACT ── */
.eco-contact {
    padding: 96px 64px;
    background: #111;
    position: relative;
    overflow: hidden;
}
.eco-contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 23, 93, 0.18) 0%, transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.eco-contact-in {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.eco-contact-l h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.eco-contact-l h2 .accent { color: #FFD600; font-style: normal; }
.eco-contact-l p.tagline {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 28px;
}
.eco-contact-info { margin-top: 24px; }
.eco-contact-info-row { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 14px; }
.eco-contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(232, 23, 93, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.eco-contact-info-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.eco-contact-info-val { font-size: 14px; font-weight: 700; color: #fff; margin-top: 2px; }
.eco-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.eco-form-row { margin-bottom: 18px; }
.eco-form-row label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.eco-form-row input,
.eco-form-row textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    outline: none;
    transition: all 200ms;
}
.eco-form-row input::placeholder,
.eco-form-row textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.eco-form-row input:focus,
.eco-form-row textarea:focus { border-color: #E8175D; background: rgba(255, 255, 255, 0.08); }
.eco-form-row textarea { resize: vertical; min-height: 110px; font-family: 'Nunito', sans-serif; }
.eco-form-btn {
    display: block;
    width: 100%;
    background: #E8175D;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232, 23, 93, 0.4);
    transition: background 200ms, transform 150ms;
    margin-top: 6px;
}
.eco-form-btn:hover { background: #C4104A; transform: translateY(-1px); }
.eco-form-msg {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ADE80;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    display: none;
}
.eco-form-msg.show { display: block; }

/* ── RESPONSIVE — eco-* selectors only ── */
@media (max-width: 980px) {
    .eco-ben-block,
    .eco-ben-block.flip { grid-template-columns: 1fr; gap: 36px; }
    .eco-ben-block.flip .eco-ben-copy,
    .eco-ben-block.flip .eco-ben-vis { order: initial; }
    .eco-ben-copy h3 { font-size: 30px; }
    .eco-why-grid { grid-template-columns: 1fr; }
    .eco-ben,
    .eco-why { padding: 64px 24px; }
}

@media (max-width: 900px) {
    .eco-hero h1     { font-size: 38px; }
    .eco-apps-grid   { grid-template-columns: 1fr; }
    .eco-story-in    { grid-template-columns: 1fr; gap: 36px; }
    .eco-contact-in  { grid-template-columns: 1fr; gap: 36px; }
    .eco-test-card   { min-width: 300px; }
    .eco-stats       { gap: 24px; }
}

@media (max-width: 600px) {
    .eco-app-head-row { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .eco-app-logo-l   { margin: 0 auto; }
    .eco-app-name-r   { align-items: center; }
}
