/* ═══════════════════════════════════════════════════════════════════════
   home.css  —  Healthcare Partner Landing Page
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Scroll-reveal animation ─────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(.4,0,.2,1) var(--delay, 0s),
                transform 0.55s cubic-bezier(.4,0,.2,1) var(--delay, 0s);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section typography ──────────────────────────────────────────────── */
.section-badge {
    display: inline-block;
    background: rgba(13,110,253,.1);
    color: var(--hcp-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #0f2b5b;
    line-height: 1.2;
}
.section-subtitle {
    color: #6b7a99;
    font-size: 1rem;
    max-width: 540px;
    margin: 0.5rem auto 0;
    line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    background: linear-gradient(125deg, #061a3d 0%, #0a2562 35%, #0d6efd 80%, #4a93ff 100%);
    color: #fff;
    overflow: hidden;
    min-height: 540px;
}

/* Decorative shape blobs */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}
.hero-shape-1 {
    width: 520px; height: 520px;
    background: #4a93ff;
    top: -120px; right: -80px;
}
.hero-shape-2 {
    width: 300px; height: 300px;
    background: #06b6d4;
    bottom: -60px; left: 20%;
    opacity: 0.12;
}
.hero-shape-3 {
    width: 200px; height: 200px;
    background: #fff;
    top: 40%; left: -60px;
    opacity: 0.07;
}

.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.hero-text-col {
    animation: heroFadeIn 0.75s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.03em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}
.hero-title-highlight {
    background: linear-gradient(90deg, #7dd3fc, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
}

.btn-hero-primary {
    background: #fff;
    color: #0f2b5b;
    border: 2px solid #fff;
    box-shadow: 0 4px 20px rgba(255,255,255,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover {
    background: #f0f8ff;
    color: #0a2562;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,255,255,0.35);
}
.btn-hero-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.2s;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-trust-item {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
}
.hero-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.3);
}

/* ── Hero Visual Card ─────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    animation: heroFadeIn 0.85s 0.2s cubic-bezier(.4,0,.2,1) both;
}
.hcard-wrap {
    position: relative;
    width: 340px;
    max-width: 100%;
}

.hcard-main {
    background: linear-gradient(135deg, #0f2b5b 0%, #1a408a 60%, #1e5ec8 100%);
    border-radius: 24px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 24px 64px rgba(6,14,40,0.5), 0 0 0 1px rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.hcard-main::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.hcard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.hcard-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}
.hcard-plan {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}
.hcard-chip {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #7dd3fc;
    border: 1px solid rgba(255,255,255,0.15);
}
.hcard-member {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.hcard-avatar {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    border: 2px solid rgba(255,255,255,0.2);
}
.hcard-name {
    font-weight: 600;
    font-size: 0.95rem;
}
.hcard-id {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    font-family: monospace;
    margin-top: 2px;
}
.hcard-benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hcard-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
}
.hcard-benefit i { font-size: 1rem; color: #7dd3fc; }

/* Floating mini-cards */
.hcard-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(15,43,91,0.18);
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2d3d;
    white-space: nowrap;
    animation: floatBob 4s ease-in-out infinite;
}
.hcard-float-1 {
    top: 18px; right: -56px;
    animation-delay: 0s;
}
.hcard-float-2 {
    bottom: 64px; right: -64px;
    animation-delay: 1.5s;
}
.hcard-float-3 {
    bottom: -16px; left: 20px;
    animation-delay: 0.8s;
}
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
.float-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-left: 8px;
}
.float-dot-green { background: #10b981; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    50% { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

@media (max-width: 991.98px) {
    .hcard-wrap { width: 280px; }
    .hcard-float-1, .hcard-float-2 { right: -20px; }
    .hero-visual { display: flex; justify-content: center; padding-bottom: 2rem; }
}
@media (max-width: 575.98px) {
    .hcard-float { display: none; }
    .hcard-wrap { width: 100%; max-width: 300px; }
}

/* ════════════════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════════════════ */
.stats-section {
    background: #fff;
    border-bottom: 1px solid #e8efff;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 1rem;
}
.stat-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--icon-color) 12%, transparent);
    color: var(--icon-color);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f2b5b;
    line-height: 1;
    display: inline;
}
.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hcp-primary);
    display: inline;
}
.stat-label {
    font-size: 0.82rem;
    color: #6b7a99;
    font-weight: 500;
    margin-top: 0.35rem;
}
.stat-divider {
    width: 1px;
    height: 64px;
    background: #e2eaff;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ════════════════════════════════════════════════════════════════════════ */
.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem 1.75rem 2rem;
    position: relative;
    box-shadow: 0 4px 24px rgba(15,43,91,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,43,91,0.12);
}
.step-card-accent {
    background: linear-gradient(145deg, #0f2b5b 0%, #0d6efd 100%);
    color: #fff;
}
.step-card-accent h5 { color: #fff; }
.step-card-accent p { color: rgba(255,255,255,0.85); }
.step-card-accent .step-number { color: rgba(255,255,255,0.25); }
.step-card-accent .step-icon-wrap { background: rgba(255,255,255,0.15); color: #fff; }

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e2eaff;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}
.step-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: rgba(13,110,253,0.1);
    color: var(--hcp-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

/* ════════════════════════════════════════════════════════════════════════
   BENEFITS CARDS
   ════════════════════════════════════════════════════════════════════════ */
.benefit-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(15,43,91,0.07);
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #f0f5ff;
}
.benefit-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,43,91,0.12);
    border-color: rgba(13,110,253,0.15);
}
.benefit-icon-v2 {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--bcolor) 12%, transparent);
    color: var(--bcolor);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    transition: background 0.2s;
}
.benefit-card-v2:hover .benefit-icon-v2 {
    background: color-mix(in srgb, var(--bcolor) 20%, transparent);
}

/* ════════════════════════════════════════════════════════════════════════
   ENQUIRY FORM + WHY HCP
   ════════════════════════════════════════════════════════════════════════ */
.enquiry-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15,43,91,0.1);
    border: 1px solid #eef3ff;
    display: flex; flex-direction: column;
}
.enquiry-card-header {
    background: linear-gradient(120deg, #0f2b5b 0%, #0d6efd 100%);
    color: #fff;
    padding: 1.25rem 1.75rem;
    font-size: 1.15rem;
    font-weight: 700;
}
.enquiry-card-body {
    padding: 2rem 1.75rem;
    flex: 1;
}
.enquiry-card .form-control,
.enquiry-card .form-select {
    border: 1.5px solid #e2eaff;
    background: #f8fbff;
    color: #1f2d3d;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
    background: #fff;
}
.enquiry-card .input-group-text {
    background: #eaf2ff;
    border-color: #e2eaff;
    color: #0d6efd;
    font-weight: 600;
}

.why-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15,43,91,0.1);
    border: 1px solid #eef3ff;
    display: flex; flex-direction: column;
}
.why-card-header {
    background: linear-gradient(120deg, #0f2b5b 0%, #0d6efd 100%);
    color: #fff;
    padding: 1.25rem 1.75rem;
    font-size: 1.15rem;
    font-weight: 700;
}
.why-card-body {
    padding: 2rem 1.75rem;
    flex: 1;
}
.why-list { display: flex; flex-direction: column; gap: 1.1rem; }
.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #eef3ff;
    transition: background 0.2s, border-color 0.2s;
}
.why-item:hover {
    background: #eaf2ff;
    border-color: rgba(13,110,253,0.2);
}
.why-check {
    width: 30px; height: 30px; flex-shrink: 0;
    background: #0d6efd;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════════════ */
.testimonial-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(15,43,91,0.07);
    border: 1px solid #f0f5ff;
    height: 100%;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(15,43,91,0.12);
}
.testimonial-featured {
    background: linear-gradient(145deg, #0f2b5b 0%, #1246a0 100%);
    border: none;
}
.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.88); }
.testimonial-featured .testimonial-quote-icon { color: rgba(255,255,255,0.15); }
.testimonial-featured .fw-bold { color: #fff; }
.testimonial-featured .testimonial-role { color: rgba(255,255,255,0.65); }
.testimonial-featured .testimonial-stars { color: #fbbf24; }
.testimonial-featured .testimonial-author { border-color: rgba(255,255,255,0.12); }

.testimonial-stars { color: #fbbf24; font-size: 0.85rem; gap: 2px; display: flex; }
.testimonial-quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: rgba(13,110,253,0.15);
    font-family: Georgia, serif;
    margin-bottom: -1rem;
    display: block;
}
.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f5ff;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--av-color) 15%, transparent);
    color: var(--av-color);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-role {
    font-size: 0.78rem;
    color: #6b7a99;
    margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════════════════ */
.cta-section-v2 {
    background: linear-gradient(120deg, #061a3d 0%, #0a2562 40%, #0d6efd 100%);
    border-radius: 28px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13,110,253,0.28);
}
.cta-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-deco-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    top: -120px; right: -80px;
}
.cta-deco-2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(74,147,255,0.15) 0%, transparent 70%);
    bottom: -80px; left: 60px;
}

.cta-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.cta-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
}
.btn-cta-primary {
    background: #fff;
    color: #0f2b5b;
    border: 2px solid #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-primary:hover {
    background: #f0f8ff;
    color: #0a2562;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,255,255,0.3);
}
.btn-cta-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.2s;
}
.btn-cta-outline:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════════════
   PARTNERS
   ════════════════════════════════════════════════════════════════════════ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.partner-logo-card {
    background: #fff;
    border: 1.5px solid #e8efff;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1f2d3d;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    font-size: 0.9rem;
}
.partner-logo-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 8px 24px rgba(13,110,253,0.12);
    transform: translateY(-3px);
}
.partner-logo-icon { font-size: 1.6rem; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════════════
   FOOTER (enhanced)
   ════════════════════════════════════════════════════════════════════════ */
.footer-desc { color: #8aa3d0; font-size: 0.88rem; line-height: 1.7; }
.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a {
    color: #8aa3d0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-contact {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.footer-contact li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: #8aa3d0;
}
.footer-contact i { color: #4a93ff; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: #8aa3d0; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }

.footer-social { display: flex; gap: 0.6rem; }
.footer-social-link {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #8aa3d0;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
    color: #5a7aad;
}
.footer-bottom-right { display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom-right a { color: #5a7aad; text-decoration: none; transition: color 0.2s; }
.footer-bottom-right a:hover { color: #fff; }
.footer-bottom-sep { color: #2a4a7a; }

/* ── Navbar ─────────────────────────────────────────────────────────── */
.hcp-public-nav-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.navbar-toggler {
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}
.navbar.sticky-top { z-index: 1030; }

/* ── Mobile Offcanvas ───────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .offcanvas-mobile { width: 75%; max-width: 320px; z-index: 1055; }
    .offcanvas-mobile .offcanvas-body { padding: 0; pointer-events: auto; }
    .offcanvas-mobile .navbar-nav { gap: 0.5rem; }
    .offcanvas-mobile .nav-link {
        padding: 0.875rem 1rem;
        border-radius: 0.5rem;
        transition: background-color 0.2s ease;
        font-size: 1rem;
        min-height: 48px;
        display: flex; align-items: center;
        cursor: pointer; pointer-events: auto;
        user-select: none;
        -webkit-tap-highlight-color: rgba(13,110,253,0.1);
        touch-action: manipulation;
    }
    .offcanvas-mobile .nav-link:hover,
    .offcanvas-mobile .nav-link:active { background-color: rgba(13,110,253,0.08); }
    .offcanvas-mobile .btn-outline-primary {
        width: 100%; padding: 0.875rem 1rem;
        min-height: 48px; font-size: 1rem;
        border-radius: 0.5rem; cursor: pointer; pointer-events: auto;
        user-select: none;
        -webkit-tap-highlight-color: rgba(13,110,253,0.1);
        touch-action: manipulation;
    }
    .offcanvas-mobile .offcanvas-header { padding: 1rem 1.5rem; pointer-events: auto; }
    .offcanvas-mobile .btn-close { min-width: 44px; min-height: 44px; cursor: pointer; pointer-events: auto; touch-action: manipulation; }
    .offcanvas-backdrop { z-index: 1050; }
    .offcanvas { pointer-events: auto; }
}

/* ── Responsive tweaks ──────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .stats-grid { gap: 0.5rem; }
    .stat-item { min-width: 45%; }
    .cta-section-v2 { padding: 3rem 1.5rem; border-radius: 20px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
}
