/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — Professional Redesign
   ═══════════════════════════════════════════════════════════════ */
:root {
    --hm-primary:    #dc2626;
    --hm-primary-d:  #b91c1c;
    --hm-accent:     #7C3AED;
    --hm-success:    #16A34A;
    --hm-warn:       #D97706;
    --hm-info:       #2563EB;
    --hm-bg:         #F8FAFC;
    --hm-bg-alt:     #F3F4F6;
    --hm-border:     #E5E7EB;
    --hm-dark:       #1F2937;
    --hm-muted:      #6B7280;
    --hm-radius:     14px;
    --hm-shadow:     0 4px 14px rgba(15, 23, 42, .06);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0B5563 0%, #0d6e7f 55%, #11808F 100%);
    color: #fff;
    padding: 70px 0 110px;
    overflow: hidden;
}
.hero-section::before,
.hero-section::after {
    content: ""; position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.05); pointer-events: none;
}
.hero-section::before { width: 380px; height: 380px; top: -120px; right: -120px; }
.hero-section::after  { width: 280px; height: 280px; bottom: -80px; left: -80px; }
.hero-section > .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff; padding: 7px 16px; border-radius: 99px;
    font-size: .85rem; font-weight: 600; margin-bottom: 20px;
}
.hero-badge i { color: #7FECF7; }
.hero-title {
    font-size: 30px; font-weight: 800; line-height: 1.25;
    color: #fff; margin-bottom: 18px;
    font-family: 'Hind Siliguri', sans-serif;
}
.hero-title span { color: #7FECF7; }
.hero-subtitle {
    color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7;
    margin-bottom: 26px; max-width: 540px;
}

/* Hero search bar */
.hero-search-bar {
    display: flex; align-items: center; gap: 0;
    background: #fff; border-radius: 99px;
    padding: 6px; max-width: 520px; margin-bottom: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.hero-search-bar > i {
    color: var(--hm-muted); font-size: 1.05rem; padding: 0 14px;
}
.hero-search-bar input {
    flex: 1; border: none; outline: none; background: transparent;
    font-family: 'Hind Siliguri', sans-serif; font-size: .95rem;
    color: var(--hm-dark); padding: 10px 0; min-width: 0;
}
.hero-search-bar input::placeholder { color: var(--hm-muted); }
.hero-search-bar button {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: #fff; border: none; border-radius: 99px;
    padding: 11px 26px; font-weight: 700; cursor: pointer;
    font-family: 'Hind Siliguri', sans-serif;
    transition: all .2s; white-space: nowrap;
}
.hero-search-bar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255,107,53,.45);
}

/* Hero CTA buttons */
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary, .btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 99px;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .95rem; font-weight: 700;
    text-decoration: none; transition: all .25s;
    white-space: nowrap; line-height: 1;
    border: 2px solid transparent;
}
.btn-hero-primary {
    background: #fff; color: #0B5563;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.btn-hero-primary:hover {
    background: #FFF7E6; color: #0B5563;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.3);
}
.btn-hero-secondary {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(6px);
}
.btn-hero-secondary:hover {
    background: #fff; color: #0B5563;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

/* Hero right-side mini cards */
.hero-card-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.hero-mini-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    aspect-ratio: 1.4 / 1;
    background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    color: #fff; text-decoration: none;
    font-size: .88rem; font-weight: 600; text-align: center;
    transition: all .25s;
}
.hero-mini-card i { font-size: 1.7rem; color: #7FECF7; }
.hero-mini-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.2);
    color: #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

/* Hero wave divider */
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
    pointer-events: none;
}
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ── STATS SECTION ─────────────────────────────────────────── */
.stats-section {
    background: #0F2730; color: #fff; padding: 40px 0;
}
.stat-cell {
    text-align: center; padding: 18px 12px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.stat-cell:last-child { border-right: none; }
.stat-cell > i {
    font-size: 1.8rem; color: #7FECF7; display: block; margin-bottom: 8px;
}
.stat-cell .stat-value {
    font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 4px;
    font-family: 'Hind Siliguri', sans-serif;
}
.stat-cell .stat-label {
    font-size: .85rem; color: rgba(255,255,255,.7); font-weight: 500;
}

/* ── HERO RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 991px) {

    .hero-section { padding: 50px 0 90px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: .95rem; }
    .hero-search-bar { max-width: 100%; }

}

@media (max-width: 768px) {

    .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .stat-cell:nth-last-child(-n+2) { border-bottom: none; }

}

@media (max-width: 575px) {

    .hero-title { font-size: 1.65rem; }
    .hero-cta-group { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }

}

/* ── Emergency strip ──────────────────────────────────────── */
.em-strip {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    color: #fff; padding: 8px 0; font-size: .87rem; font-weight: 600;
    text-align: center;
}
.em-strip .container { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.em-strip a { color: #fff; text-decoration: underline; font-weight: 700; }
.em-strip .em-pulse {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.18); padding: 4px 10px; border-radius: 99px;
}
.em-strip .em-pulse::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    animation: emPulse 1.5s infinite;
}
@keyframes emPulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.7);} 70%{box-shadow:0 0 0 10px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

/* ── Section helpers ─────────────────────────────────────────── */
.hm-section { padding: 60px 0; }
.hm-section.tinted { background: var(--hm-bg); }
.hm-section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.hm-section-tag {
    display: inline-block; padding: 5px 14px; background: rgba(124,58,237,.1);
    color: var(--hm-accent); border-radius: 99px; font-size: .78rem; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px;
}
.hm-section-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--hm-dark); margin-bottom: 8px; }
.hm-section-subtitle { font-size: 1rem; color: var(--hm-muted); }

/* ── Trust signals strip ─────────────────────────────────────── */
.trust-strip {
    background: #fff; border-top: 1px solid var(--hm-border); border-bottom: 1px solid var(--hm-border);
    padding: 16px 0;
}
.trust-strip .trust-list {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 30px;
    list-style: none; padding: 0; margin: 0;
}
.trust-strip .trust-item {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .85rem; font-weight: 700; color: var(--hm-dark);
}
.trust-strip .trust-item i { font-size: 1.1rem; color: var(--hm-success); }

/* ── How it works ────────────────────────────────────────────── */
.how-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.how-card {
    background: #fff; border: 1px solid var(--hm-border); border-radius: var(--hm-radius);
    padding: 24px 20px; text-align: center; position: relative; transition: all .25s;
}
.how-card::before {
    content: counter(howStep); counter-increment: howStep;
    position: absolute; top: -16px; right: 16px;
    background: var(--hm-accent); color: #fff; width: 32px; height: 32px;
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; box-shadow: 0 3px 10px rgba(124,58,237,.4);
}
.how-grid { counter-reset: howStep; }
.how-card:hover { transform: translateY(-4px); box-shadow: var(--hm-shadow); }
.how-card .how-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE); color: var(--hm-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 14px;
}
.how-card h5 { font-weight: 700; font-size: 1rem; color: var(--hm-dark); margin-bottom: 6px; }
.how-card p { font-size: .85rem; color: var(--hm-muted); line-height: 1.65; margin: 0; }

/* ── Featured Doctors ────────────────────────────────────────── */
.doctors-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.doc-card {
    background: #fff; border: 1px solid var(--hm-border); border-radius: var(--hm-radius);
    padding: 20px 18px; text-align: center; transition: all .25s; position: relative;
}
.doc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,23,42,.1); }
.doc-card .doc-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: var(--hm-info); display: inline-flex; align-items: center; justify-content: center;
    font-size: 2.2rem; margin: 0 auto 12px; overflow: hidden;
}
.doc-card .doc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doc-card .doc-online {
    position: absolute; top: 18px; right: 18px;
    background: var(--hm-success); color: #fff; font-size: .68rem; font-weight: 700;
    padding: 3px 9px; border-radius: 99px;
    display: inline-flex; align-items: center; gap: 5px;
}
.doc-card .doc-online::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 0 2px rgba(255,255,255,.4);
}
.doc-card h6 { font-weight: 800; color: var(--hm-dark); font-size: 1rem; margin-bottom: 2px; }
.doc-card .doc-spec { font-size: .82rem; color: var(--hm-muted); margin-bottom: 6px; min-height: 20px; }
.doc-card .doc-meta {
    display: flex; justify-content: center; gap: 10px;
    font-size: .78rem; color: var(--hm-dark); margin-bottom: 12px;
}
.doc-card .doc-meta i { color: #F59E0B; }
.doc-card .doc-bmdc { font-size: .72rem; color: var(--hm-success); font-weight: 600; margin-bottom: 10px; }
.doc-card .btn-book {
    width: 100%; background: var(--hm-accent); color: #fff; border: none;
    padding: 9px 14px; border-radius: 9px; font-size: .85rem; font-weight: 700;
    transition: background .2s;
}
.doc-card .btn-book:hover { background: #6D28D9; color: #fff; }

/* ── Specializations grid ────────────────────────────────────── */
.spec-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}
.spec-card {
    background: #fff; border: 1px solid var(--hm-border); border-radius: 12px;
    padding: 18px 14px; text-align: center; transition: all .25s; color: var(--hm-dark);
    text-decoration: none; display: block;
}
.spec-card:hover {
    transform: translateY(-3px); border-color: var(--hm-accent);
    box-shadow: 0 8px 22px rgba(124,58,237,.12); color: var(--hm-accent);
}
.spec-card .spec-icon {
    width: 50px; height: 50px; border-radius: 12px; margin: 0 auto 8px;
    background: linear-gradient(135deg, #ECFDF5, #DCFCE7); color: var(--hm-success);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.spec-card h6 { font-size: .85rem; font-weight: 700; margin-bottom: 2px; min-height: 38px; display: flex; align-items: center; justify-content: center; }
.spec-card .spec-count { font-size: .72rem; color: var(--hm-muted); }

/* ── Health Packages ─────────────────────────────────────────── */
.pkg-mini-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.pkg-mini {
    background: #fff; border: 1px solid var(--hm-border); border-radius: var(--hm-radius);
    padding: 22px; text-align: center; position: relative; transition: all .25s;
}
.pkg-mini:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(15,23,42,.08); }
.pkg-mini.featured { border-color: var(--hm-warn); border-width: 2px; }
.pkg-mini .pkg-ribbon-mini {
    position: absolute; top: 12px; right: -8px;
    background: var(--hm-warn); color: #fff; padding: 4px 14px;
    font-size: .72rem; font-weight: 700; border-radius: 4px 0 0 4px;
}
.pkg-mini .pkg-mini-icon {
    width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 12px;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: var(--hm-warn);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.pkg-mini h5 { font-weight: 800; margin-bottom: 5px; color: var(--hm-dark); }
.pkg-mini .pkg-mini-tag { font-size: .85rem; color: var(--hm-muted); margin-bottom: 14px; min-height: 40px; }
.pkg-mini .pkg-mini-price {
    font-size: 1.7rem; font-weight: 800; color: var(--hm-success); margin-bottom: 4px;
}
.pkg-mini .pkg-mini-original { font-size: .9rem; color: var(--hm-muted); text-decoration: line-through; margin-bottom: 12px; display: block; }
.pkg-mini .btn-pkg-mini {
    display: inline-block; background: var(--hm-success); color: #fff;
    padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: .85rem;
    text-decoration: none; transition: all .2s;
}
.pkg-mini .btn-pkg-mini:hover { background: #15803D; color: #fff; }

/* ── Testimonials ────────────────────────────────────────────── */
.tm-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.tm-card {
    background: #fff; border: 1px solid var(--hm-border); border-radius: var(--hm-radius);
    padding: 22px 20px; transition: all .25s;
}
.tm-card:hover { transform: translateY(-3px); box-shadow: var(--hm-shadow); }
.tm-card .tm-rating { color: #F59E0B; font-size: 1rem; margin-bottom: 10px; }
.tm-card .tm-comment { color: var(--hm-dark); line-height: 1.65; font-size: .9rem; margin-bottom: 14px; font-style: italic; }
.tm-card .tm-comment::before { content: "“"; font-size: 2rem; color: var(--hm-accent); line-height: 0; margin-right: 4px; vertical-align: -10px; }
.tm-card .tm-author { display: flex; align-items: center; gap: 11px; }
.tm-card .tm-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--hm-accent), #A78BFA); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.tm-card .tm-info strong { display: block; color: var(--hm-dark); font-size: .92rem; }
.tm-card .tm-info span { font-size: .78rem; color: var(--hm-muted); }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.blog-card {
    background: #fff; border: 1px solid var(--hm-border); border-radius: var(--hm-radius);
    overflow: hidden; transition: all .25s; text-decoration: none; color: inherit;
    display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(15,23,42,.1); color: inherit; }
.blog-card .blog-image { width: 100%; height: 180px; object-fit: cover; background: var(--hm-bg-alt); }
.blog-card .blog-content { padding: 18px; }
.blog-card .blog-date { font-size: .75rem; color: var(--hm-muted); margin-bottom: 6px; }
.blog-card .blog-title { font-weight: 700; font-size: 1.02rem; color: var(--hm-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card .blog-excerpt { font-size: .87rem; color: var(--hm-muted); line-height: 1.65; margin-bottom: 10px; }
.blog-card .blog-readmore { color: var(--hm-accent); font-size: .82rem; font-weight: 700; }

/* ── Bangladesh Map (real SVG from simplemaps.com) ───────────── */
.bd-map-wrap {
    background: linear-gradient(180deg, #ECFEFF, #F0FDF4);
    border: 1px solid var(--hm-border); border-radius: 18px;
    padding: 18px; position: relative; min-height: 480px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.bd-map-wrap svg { width: 100%; height: auto; max-height: 560px; display: block; }

/* Per-division tint (BDA-BDH) on the real SVG paths */
.bd-map-wrap path#BDA { fill: #BAE6FD; }  /* Barisal  */
.bd-map-wrap path#BDB { fill: #FECACA; }  /* Chittagong */
.bd-map-wrap path#BDC { fill: #FED7AA; }  /* Dhaka */
.bd-map-wrap path#BDD { fill: #D1FAE5; }  /* Khulna */
.bd-map-wrap path#BDE { fill: #E0E7FF; }  /* Rajshahi */
.bd-map-wrap path#BDF { fill: #FEF3C7; }  /* Rangpur */
.bd-map-wrap path#BDG { fill: #FCE7F3; }  /* Sylhet */
.bd-map-wrap path#BDH { fill: #DBEAFE; }  /* Mymensingh */

.bd-map-wrap path[id^="BD"] {
    stroke: #475569; stroke-width: 1.2; stroke-linejoin: round;
    cursor: pointer;
    transition: fill .25s, stroke .25s, filter .25s;
    filter: drop-shadow(0 2px 3px rgba(15,23,42,.05));
}
.bd-map-wrap path[id^="BD"]:hover,
.bd-map-wrap path[id^="BD"].is-active {
    fill: #16A34A !important; stroke: #14532D; stroke-width: 1.8;
    filter: drop-shadow(0 6px 14px rgba(22,163,74,.45));
}
.bd-map-wrap circle[id^="BD"] { display: none; } /* Hide label-point circles from simplemaps */

/* Bengali division name labels (injected by JS at circle anchor points) */
.bd-map-wrap .bd-name-label {
    fill: #1F2937; font-size: 16px; font-weight: 800;
    paint-order: stroke fill;
    stroke: #ffffff; stroke-width: 4; stroke-linejoin: round;
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
    pointer-events: none; user-select: none;
}

/* Map tooltip */
.bd-tooltip {
    position: absolute; pointer-events: none;
    background: #1F2937; color: #fff; padding: 8px 14px; border-radius: 8px;
    font-size: .85rem; font-weight: 700; white-space: nowrap;
    transform: translate(-50%, -120%); z-index: 5;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.bd-tooltip::after {
    content: ""; position: absolute; bottom: -6px; left: 50%;
    transform: translateX(-50%); border-width: 6px 6px 0 6px;
    border-style: solid; border-color: #1F2937 transparent transparent transparent;
}
.bd-tooltip strong { display: block; font-size: .95rem; }
.bd-tooltip small { opacity: .85; font-weight: 500; }

.bd-map-credit {
    text-align: center; font-size: .8rem; color: var(--hm-muted); margin-top: 8px;
}

/* Sidebar list */
.bd-list { background: #fff; border: 1px solid var(--hm-border); border-radius: 16px; padding: 22px; }
.bd-list-title { font-weight: 800; color: var(--hm-dark); margin-bottom: 6px; }
.bd-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bd-list-item {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 11px 14px; background: var(--hm-bg); border: 1px solid var(--hm-border);
    border-radius: 10px; text-decoration: none; transition: all .2s;
}
.bd-list-item:hover {
    background: var(--hm-accent); border-color: var(--hm-accent); transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124,58,237,.25);
}
.bd-list-item:hover .bd-list-item-name,
.bd-list-item:hover .bd-list-item-count { color: #fff; }
.bd-list-item.is-active { background: var(--hm-accent); border-color: var(--hm-accent); }
.bd-list-item.is-active .bd-list-item-name,
.bd-list-item.is-active .bd-list-item-count { color: #fff; }
.bd-list-item-name { font-weight: 700; color: var(--hm-dark); font-size: .92rem; display: flex; align-items: center; gap: 6px; }
.bd-list-item-count { font-size: .72rem; color: var(--hm-muted); white-space: nowrap; }

/* Districts pop-down */
.bd-districts-list {
    display: none; flex-wrap: wrap; gap: 6px; padding: 12px; background: var(--hm-bg);
    border-radius: 10px;
}
.bd-districts-list.open { display: flex; }
.bd-dist-pill {
    display: inline-block; padding: 5px 12px; background: #fff; border: 1px solid var(--hm-border);
    border-radius: 99px; font-size: .78rem; color: var(--hm-dark); text-decoration: none;
    transition: all .2s;
}
.bd-dist-pill:hover { background: var(--hm-success); color: #fff; border-color: var(--hm-success); }

@media (max-width: 991px) {

    .bd-list-grid { grid-template-columns: 1fr; }
    .bd-map-wrap { max-height: 480px; }

}

/* ── FAQ teaser ──────────────────────────────────────────────── */
.faq-teaser { max-width: 800px; margin: 0 auto; }
.faq-teaser .faq-q {
    background: #fff; border: 1px solid var(--hm-border); border-radius: 12px;
    padding: 14px 18px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 14px; font-weight: 600; color: var(--hm-dark); margin-bottom: 10px;
    transition: all .2s;
}
.faq-teaser .faq-q:hover { border-color: var(--hm-accent); }
.faq-teaser .faq-q i { transition: transform .3s; color: var(--hm-muted); }
.faq-teaser .faq-item.open .faq-q { border-color: var(--hm-accent); background: rgba(124,58,237,.04); }
.faq-teaser .faq-item.open .faq-q i { transform: rotate(180deg); color: var(--hm-accent); }
.faq-teaser .faq-a {
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
    background: #fff; border: 1px solid var(--hm-border); border-top: none;
    border-radius: 0 0 12px 12px; margin-top: -10px;
}
.faq-teaser .faq-item.open .faq-a { max-height: 500px; padding: 14px 18px; margin-bottom: 10px; }
.faq-teaser .faq-a-inner { color: var(--hm-muted); line-height: 1.7; font-size: .9rem; }

/* ── App download ────────────────────────────────────────────── */
.app-section {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: #fff; padding: 50px 0; border-radius: 18px; margin: 30px 0;
}
.app-section h2 { color: #fff; font-weight: 800; margin-bottom: 10px; }
.app-section p { color: rgba(255,255,255,.9); margin-bottom: 22px; }
.app-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.app-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,0,0,.4); color: #fff; padding: 10px 20px; border-radius: 10px;
    text-decoration: none; transition: all .2s;
}
.app-badge:hover { background: #000; color: #fff; transform: translateY(-2px); }
.app-badge i { font-size: 1.6rem; }
.app-badge small { display: block; font-size: .68rem; opacity: .85; }
.app-badge strong { display: block; font-size: 1rem; }

/* ── Newsletter ──────────────────────────────────────────────── */
.nl-card {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    border-radius: var(--hm-radius); padding: 36px 30px; text-align: center;
}
.nl-card h3 { font-weight: 800; color: #14532D; margin-bottom: 8px; }
.nl-card p { color: #166534; margin-bottom: 22px; }
.nl-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.nl-form input {
    flex: 1; min-width: 200px; padding: 12px 16px; border: 1px solid var(--hm-border);
    border-radius: 10px; font-size: .92rem; background: #fff;
}
.nl-form input:focus { outline: 2px solid var(--hm-success); border-color: var(--hm-success); }
.nl-form button {
    padding: 12px 22px; background: var(--hm-success); color: #fff; border: none;
    border-radius: 10px; font-weight: 700; cursor: pointer; transition: background .2s;
}
.nl-form button:hover { background: #15803D; }
.nl-message { margin-top: 12px; font-weight: 600; font-size: .9rem; }
.nl-message.success { color: #14532D; }
.nl-message.error { color: #991B1B; }
