
/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "PingFang HK", "Microsoft JhengHei", "Noto Sans TC", -apple-system, BlinkMacSystemFont, sans-serif;
    color: #3d2a3a;
    line-height: 1.75;
    background: #fff8fb;
    padding-bottom: 72px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ URGENCY BAR ============ */
.urgency-bar {
    background: linear-gradient(90deg, #c2185b, #e91e63, #ff6b9d);
    color: #fff;
    padding: 12px 18px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.urgency-bar strong { font-size: 16px; }
.urgency-bar a { color: #fff; text-decoration: underline; }

/* ============ HERO BANNER ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #ffe0ec 0%, #ffc7d9 40%, #ffb0c8 100%);
    padding: 40px 20px 50px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(233,30,99,0.15), transparent 70%);
    border-radius: 50%;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

.hero-top {
    text-align: center;
    margin-bottom: 25px;
}
.hero-badge {
    display: inline-block;
    background: #fff;
    color: #c2185b;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 6px 18px rgba(194,24,91,0.18);
}
.hero-badge .dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #ff4081;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
    vertical-align: middle;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    color: #3d2a3a;
    margin-bottom: 12px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    display: inline-block;
    background: rgba(61,42,58,0.9);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ============ HERO SINGLE IMAGE ============ */
.hero-image-wrap {
    margin: 25px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(194,24,91,0.25);
    border: 4px solid #fff;
    position: relative;
    background: #fff;
}
.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(233,30,99,0.15);
    border-radius: 16px;
    pointer-events: none;
}

/* Story card */
.story-card {
    background: #fffbe0;
    border: 2px dashed #f5c542;
    border-radius: 14px;
    padding: 18px;
    margin-top: 15px;
    position: relative;
}
.story-card::before {
    content: "📌";
    position: absolute;
    top: -14px; left: 18px;
    font-size: 24px;
}
.story-card h3 {
    color: #c2185b;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: bold;
}
.story-card p {
    font-size: 14px;
    color: #5a3d4f;
    line-height: 1.75;
}
.story-card .signature {
    margin-top: 10px;
    color: #e91e63;
    font-weight: bold;
    font-size: 15px;
    font-style: italic;
}

/* Feature pills */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.feature-pill {
    background: rgba(255,255,255,0.9);
    padding: 12px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(194,24,91,0.1);
    border: 1px solid rgba(255,255,255,0.8);
}
.feature-pill .fi {
    font-size: 24px;
    margin-bottom: 4px;
}
.feature-pill .ft {
    font-size: 12.5px;
    font-weight: bold;
    color: #3d2a3a;
    line-height: 1.4;
}

/* Hero CTA */
.hero-cta {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-phone { background: #fff; color: #e91e63; border: 2px solid #e91e63; }
.btn-pink { background: linear-gradient(135deg, #e91e63, #ff6b9d); color: #fff; }

/* ============ SECTION BASE ============ */
section { padding: 50px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 35px; }
.eyebrow {
    display: inline-block;
    background: #ffe0ec;
    color: #e91e63;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.section-title h2 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.35;
}
.section-title h2 .pink { color: #e91e63; }
.section-title p {
    color: #7a4a5f;
    margin-top: 10px;
    font-size: 14.5px;
}

/* ============ TIMELINE / RECOVERY JOURNEY ============ */
.timeline-section { background: #fff; }
.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 10px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ffb0c8, #e91e63);
    border-radius: 3px;
}
.tl-item {
    position: relative;
    padding-bottom: 28px;
}
.tl-item::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 4px;
    width: 20px; height: 20px;
    background: #fff;
    border: 4px solid #e91e63;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #ffe0ec;
}
.tl-stage {
    display: inline-block;
    background: linear-gradient(135deg, #ff8fb3, #e91e63);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}
.tl-item h3 {
    font-size: 17px;
    color: #3d2a3a;
    font-weight: bold;
    margin-bottom: 6px;
}
.tl-item p {
    font-size: 14.5px;
    color: #5a3d4f;
    line-height: 1.75;
}

/* ============ CASE FACTS BOX ============ */
.case-facts {
    background: linear-gradient(135deg, #fff5f9, #ffe0ec);
    border-radius: 20px;
    padding: 25px 20px;
    margin-top: 30px;
    border: 2px solid #ffcada;
}
.case-facts h3 {
    text-align: center;
    color: #c2185b;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 900;
}
.cf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.cf-item {
    background: #fff;
    padding: 14px 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ffdfe9;
}
.cf-label {
    font-size: 11.5px;
    color: #7a4a5f;
    margin-bottom: 4px;
    font-weight: 600;
}
.cf-value {
    font-size: 15px;
    font-weight: bold;
    color: #e91e63;
}

/* ============ WHY TPLO / BENEFITS ============ */
.why-section { background: #fff0f5; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.why-card {
    background: #fff;
    padding: 22px 18px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(233,30,99,0.08);
    border-left: 5px solid #e91e63;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.why-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #ff8fb3, #c2185b);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.why-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #3d2a3a;
    font-weight: bold;
}
.why-card p {
    font-size: 14px;
    color: #5a3d4f;
}

/* ============ SYMPTOMS / WARNING SIGNS ============ */
.warning-section { background: #fff; }
.warning-box {
    background: #fff5f9;
    border: 2px solid #ffb0c8;
    border-radius: 20px;
    padding: 25px 20px;
}
.warning-box h3 {
    color: #c2185b;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 900;
}
.warning-list {
    list-style: none;
}
.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #ffcada;
    font-size: 14.5px;
    color: #3d2a3a;
}
.warning-list li:last-child { border-bottom: none; }
.warning-list li .ck {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

/* ============ OTHER CASES ============ */
.cases-section { background: #fff0f5; }
.mini-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.mini-case {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 5px 15px rgba(233,30,99,0.08);
    border: 2px solid #ffe0ec;
}
.mc-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffb0c8, #ff6b9d);
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11.5px;
    font-weight: bold;
    margin-bottom: 8px;
}
.mini-case h4 {
    font-size: 16px;
    color: #3d2a3a;
    margin-bottom: 8px;
    font-weight: bold;
}
.mini-case p {
    font-size: 13.5px;
    color: #5a3d4f;
    line-height: 1.7;
}
.mini-case .outcome {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fff5f9;
    border-radius: 8px;
    color: #c2185b;
    font-size: 13px;
    font-weight: 600;
}

/* ============ STATS ============ */
.stats-section {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 50%, #ff6b9d 100%);
    color: #fff;
}
.stats-section .section-title h2 { color: #fff; }
.stats-section .section-title p { color: rgba(255,255,255,0.9); }
.stats-section .eyebrow { background: rgba(255,255,255,0.25); color: #fff; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.stat-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 22px 12px;
    border-radius: 16px;
    text-align: center;
}
.stat-n {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-d {
    font-size: 13px;
    opacity: 0.95;
}

/* ============ MAP ============ */
.map-section { background: #fff; }
.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(233,30,99,0.12);
    border: 3px solid #ffe0ec;
}
.map-wrap iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}
.map-info {
    background: #fff5f9;
    padding: 18px 15px;
    text-align: center;
}
.map-info p { color: #5a3d4f; margin-bottom: 6px; font-size: 14.5px; }
.map-info strong { color: #e91e63; }

/* ============ FINAL CTA ============ */
.final-cta {
    background: linear-gradient(135deg, #ffb0c8, #e91e63);
    color: #fff;
    text-align: center;
    padding: 55px 20px;
}
.final-cta h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.35;
}
.final-cta p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
}
.final-cta .cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    margin: 0 auto;
}

/* ============ FLOATING MOBILE CTA ============ */
.mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: flex;
    z-index: 999;
    border-top: 2px solid #ffe0ec;
}
.mobile-cta a {
    flex: 1;
    padding: 14px 6px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.mobile-cta a:active { opacity: 0.85; }
.mobile-cta .mc-whatsapp { background: #25d366; color: #fff; }
.mobile-cta .mc-phone { background: #e91e63; color: #fff; }
.mobile-cta .mc-i { font-size: 18px; }

/* ============ FOOTER ============ */
.site-footer {
    background: #3d2a3a;
    color: #ffb0c8;
    text-align: center;
    padding: 28px 20px;
    font-size: 13px;
    line-height: 1.8;
}
.site-footer strong { color: #fff; }

/* ============ RESPONSIVE ============ */
@media (min-width: 768px) {
    .hero { padding: 60px 30px 70px; }
    .hero h1 { font-size: 42px; }
    .hero-features { grid-template-columns: repeat(4, 1fr); }
    .hero-cta { flex-direction: row; justify-content: center; }
    .section-title h2 { font-size: 34px; }
    .cf-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .mini-cases { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stat-n { font-size: 42px; }
    .final-cta h2 { font-size: 36px; }
    .final-cta .cta-btns { flex-direction: row; max-width: none; justify-content: center; }
    .mobile-cta { display: none; }
    body { padding-bottom: 0; }
    .map-wrap iframe { height: 420px; }
    .hero-image-wrap { max-width: 900px; margin-left: auto; margin-right: auto; }
}
