/* ============================================================
   SURGIVALLEY LANDING PAGES — CSS CLASSES
   Used by B2B specialty landing pages (plastic surgery, dental, etc.)
   Loaded in header-meta.blade.php, referenced by page content HTML.
   NO inline styles needed — HTMLPurifier-safe.
   ============================================================ */

/* === HERO SECTION === */
.sv-lp-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0a1628 100%);
    padding: 80px 0 40px;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.sv-lp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}
.sv-lp-hero .container {
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.sv-lp-badge {
    display: inline-block;
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Hero Title */
.sv-lp-hero h1,
.sv-lp-hero-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Description */
.sv-lp-hero-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Hero CTA Buttons */
.sv-lp-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.sv-lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245,158,11,0.5);
    color: #000 !important;
}

.sv-lp-btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.4);
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    background: transparent;
}
.sv-lp-btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
    color: #ffffff !important;
}

/* Hero Stats Row */
.sv-lp-hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.sv-lp-hero-stat {
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}
.sv-lp-hero-stat-num {
    display: block;
    color: #f59e0b;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

/* === MID-PAGE CTA BANNER === */
.sv-lp-cta-mid {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
}
.sv-lp-cta-mid h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sv-lp-cta-mid p {
    color: #dbeafe;
    font-size: 1.05rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Mid Buttons */
.sv-lp-cta-mid .sv-lp-btn-primary {
    background: #ffffff;
    color: #1e40af !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.sv-lp-cta-mid .sv-lp-btn-primary:hover {
    background: #f0f4ff;
    color: #1e40af !important;
}
.sv-lp-cta-mid .sv-lp-btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #ffffff !important;
}

/* === WHY CHOOSE SECTION === */
.sv-lp-why-choose {
    background: #f8fafc;
    padding: 70px 0;
}
.sv-lp-section-eyebrow {
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sv-lp-why-choose h3 {
    color: #0f172a;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 45px;
}
.sv-lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.sv-lp-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.sv-lp-feature-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.sv-lp-icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2563eb;
    flex-shrink: 0;
}
.sv-lp-feature-card h6 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 1rem;
}
.sv-lp-feature-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* === COMPARISON TABLE === */
.sv-lp-comparison {
    padding: 70px 0;
    background: #ffffff;
}
.sv-lp-comparison h3 {
    text-align: center;
    color: #0f172a;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 40px;
}
.sv-lp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.sv-lp-table thead th {
    background: #0f172a;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
}
.sv-lp-table thead th:nth-child(2) {
    background: #1e40af;
    color: #ffffff;
}
.sv-lp-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.92rem;
}
.sv-lp-table tbody tr:nth-child(even) td {
    background: #f8fafc;
}
.sv-lp-table tbody td:first-child {
    font-weight: 600;
    color: #0f172a;
}
.sv-lp-table tbody td:nth-child(2) {
    color: #166534;
    font-weight: 600;
    background: rgba(34,197,94,0.06);
}
.sv-lp-table tbody td:nth-child(3) {
    color: #991b1b;
}

/* === STATS / NUMBERS SECTION === */
.sv-lp-numbers {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 70px 0;
    text-align: center;
}
.sv-lp-numbers h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 45px;
}
.sv-lp-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.sv-lp-number-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}
.sv-lp-number-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.sv-lp-number-icon {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-bottom: 10px;
    display: block;
}
.sv-lp-number-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1.2;
}
.sv-lp-number-label {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 4px;
}
.sv-lp-number-card small,
.sv-lp-number-sub {
    color: #94a3b8;
    font-size: 0.82rem;
    display: block;
    margin-top: 4px;
}

/* === CUSTOM MANUFACTURING CTA === */
.sv-lp-cta-custom {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}
.sv-lp-cta-custom h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sv-lp-cta-custom p {
    color: #e9d5ff;
    font-size: 1.05rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.sv-lp-cta-custom .sv-lp-btn-primary {
    background: #ffffff;
    color: #7c3aed !important;
}
.sv-lp-cta-custom .sv-lp-btn-outline {
    border-color: rgba(255,255,255,0.5);
}

/* === PROCESS STEPS === */
.sv-lp-process {
    background: #f1f5f9;
    padding: 50px 0;
}
.sv-lp-process h4 {
    text-align: center;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 40px;
}
.sv-lp-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: center;
}
.sv-lp-process-step {
    padding: 10px;
}
.sv-lp-step-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.sv-lp-process-step h6 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.sv-lp-process-step p,
.sv-lp-process-step small {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.5;
}

/* === DENTAL-SPECIFIC HERO (green variant) === */
.sv-lp-hero-dental {
    background: linear-gradient(135deg, #042f2e 0%, #134e4a 50%, #042f2e 100%);
}
.sv-lp-hero-dental .sv-lp-badge,
.sv-lp-hero-dental .sv-lp-hero-stat-num {
    color: #5eead4;
}
.sv-lp-hero-dental .sv-lp-btn-primary {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(20,184,166,0.3);
}
.sv-lp-hero-dental .sv-lp-btn-primary:hover {
    box-shadow: 0 6px 25px rgba(20,184,166,0.5);
    color: #ffffff !important;
}
.sv-lp-hero-dental .sv-lp-icon-circle {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    color: #0d9488;
}
.sv-lp-hero-dental .sv-lp-number-val,
.sv-lp-hero-dental .sv-lp-number-icon,
.sv-lp-hero-dental .sv-lp-section-eyebrow {
    color: #5eead4;
}

/* === CATEGORY GRID SECTION === */
/* Wrapper for product-categories shortcode on landing pages.
   Provides a CSS-grid FALLBACK when Slick carousel doesn't initialize. */
.sv-lp-cat-section {
    padding: 60px 0;
    background: #f8fafc;
}
.sv-lp-cat-section .section-title h2 {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.7rem;
}
.sv-lp-cat-section .section-title {
    margin-bottom: 30px;
}

/* Grid fallback — kicks in when Slick fails to initialize */
.sv-lp-cat-section .slick-carousel:not(.slick-initialized) {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 10px;
}

/* Enhanced category cards inside landing pages */
.sv-lp-cat-section .category-card {
    padding: 0 !important;
}
.sv-lp-cat-section .category-card .card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #ffffff;
}
.sv-lp-cat-section .category-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #3b82f6;
}
.sv-lp-cat-section .category-card .card-img-top {
    background: #f1f5f9;
    padding: 18px 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}
.sv-lp-cat-section .category-card .card-img-top img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.sv-lp-cat-section .category-card .card:hover .card-img-top img {
    transform: scale(1.05);
}
.sv-lp-cat-section .category-card .card-body {
    padding: 14px 12px 16px;
    background: #ffffff;
}
.sv-lp-cat-section .category-card .card-title {
    margin-bottom: 4px;
    font-size: 0.92rem;
}
.sv-lp-cat-section .category-card .card-title a {
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.sv-lp-cat-section .category-card .card-title a:hover {
    color: #2563eb;
}
.sv-lp-cat-section .category-card .text-muted {
    font-size: 0.78rem;
    color: #94a3b8 !important;
}

/* Dental accent for category cards */
.sv-lp-dental-accent .category-card .card:hover {
    border-color: #0d9488;
}
.sv-lp-dental-accent .category-card .card-title a:hover {
    color: #0d9488;
}

/* === CATEGORY HIGHLIGHTS — Engaging content below category grid === */
.sv-lp-cat-highlights {
    padding: 50px 0 60px;
    background: #ffffff;
}
.sv-lp-cat-highlights-header {
    text-align: center;
    margin-bottom: 40px;
}
.sv-lp-cat-highlights h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.sv-lp-cat-highlights-sub {
    color: #64748b;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.sv-lp-cat-hl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.sv-lp-cat-hl-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.sv-lp-cat-hl-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-left-color: #1d4ed8;
}
.sv-lp-cat-hl-icon {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 10px;
    display: block;
}
.sv-lp-cat-hl-card h6 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 1rem;
}
.sv-lp-cat-hl-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 10px;
}
.sv-lp-cat-hl-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}
.sv-lp-cat-hl-link:hover {
    text-decoration: underline;
    color: #1d4ed8;
}

/* Dental accent for highlights */
.sv-lp-dental-accent .sv-lp-cat-hl-card {
    border-left-color: #0d9488;
}
.sv-lp-dental-accent .sv-lp-cat-hl-card:hover {
    border-left-color: #0f766e;
}
.sv-lp-dental-accent .sv-lp-cat-hl-icon {
    color: #0d9488;
}
.sv-lp-dental-accent .sv-lp-cat-hl-link {
    color: #0d9488;
}
.sv-lp-dental-accent .sv-lp-cat-hl-link:hover {
    color: #0f766e;
}

/* === TRUST STRIP (compact horizontal trust signals) === */
.sv-lp-trust-strip {
    background: #0f172a;
    padding: 18px 0;
    text-align: center;
}
.sv-lp-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}
.sv-lp-trust-item {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.sv-lp-trust-item i {
    color: #f59e0b;
    font-size: 1rem;
}
.sv-lp-trust-item strong {
    color: #e2e8f0;
}

/* Dental accent for trust strip */
.sv-lp-dental-accent .sv-lp-trust-item i {
    color: #5eead4;
}

/* === AUDIENCE CTA (targeted B2B audience segments) === */
.sv-lp-audience {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.sv-lp-audience h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 40px;
}
.sv-lp-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.sv-lp-audience-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.sv-lp-audience-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.sv-lp-audience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #2563eb;
}
.sv-lp-audience-card h6 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.sv-lp-audience-card p {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Dental accent for audience section */
.sv-lp-dental-accent .sv-lp-audience-icon {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    color: #0d9488;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .sv-lp-hero { padding: 50px 0 30px; min-height: 400px; }
    .sv-lp-hero h1, .sv-lp-hero-title { font-size: 2rem; }
    .sv-lp-hero-stats { gap: 20px; }
    .sv-lp-feature-grid { grid-template-columns: 1fr; }
    .sv-lp-numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-lp-cat-section .slick-carousel:not(.slick-initialized) {
        grid-template-columns: repeat(3, 1fr);
    }
    .sv-lp-cat-hl-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-lp-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-lp-trust-items { gap: 20px; }
}
@media (max-width: 575px) {
    .sv-lp-hero h1, .sv-lp-hero-title { font-size: 1.6rem; }
    .sv-lp-hero-desc { font-size: 0.95rem; }
    .sv-lp-btn-primary, .sv-lp-btn-outline { display: block; width: 100%; text-align: center; }
    .sv-lp-hero-stats { flex-direction: column; gap: 15px; }
    .sv-lp-process-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-lp-numbers-grid { grid-template-columns: 1fr 1fr; }
    .sv-lp-table { font-size: 0.82rem; }
    .sv-lp-table thead th, .sv-lp-table tbody td { padding: 10px 12px; }
    .sv-lp-cat-section .slick-carousel:not(.slick-initialized) {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .sv-lp-cat-hl-grid { grid-template-columns: 1fr; }
    .sv-lp-audience-grid { grid-template-columns: 1fr; }
    .sv-lp-trust-items { flex-direction: column; gap: 10px; }
}


/* =============================================================================
   HOMEPAGE SPECIALTIES (sv-hp-*) — Styles for the All-Specialties Hub Page
   ============================================================================= */

/* ── Hero Stats Card ──────────────────────────────────────────── */
.sv-hp-hero-stats-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sv-hp-stat-item {
    text-align: center;
}
.sv-hp-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.sv-hp-stat-label {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Specialty Grid Section ───────────────────────────────────── */
.sv-hp-specialties {
    padding: 70px 0;
    background: #f8fafc;
}
.sv-hp-specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* ── Specialty Card ───────────────────────────────────────────── */
.sv-hp-specialty-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid #e2e8f0;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.sv-hp-specialty-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, #1e40af);
    border-radius: 14px 14px 0 0;
}
.sv-hp-specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-color: var(--accent, #1e40af);
}
.sv-hp-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent, #1e40af) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent, #1e40af);
    margin-bottom: 16px;
}
.sv-hp-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.sv-hp-card-tagline {
    font-size: .82rem;
    color: var(--accent, #1e40af);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 10px;
}
.sv-hp-card-desc {
    font-size: .88rem;
    color: #475569;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 14px;
}
.sv-hp-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: .8rem;
    color: #64748b;
    margin-bottom: 16px;
}
.sv-hp-card-meta i {
    margin-right: 3px;
    color: var(--accent, #1e40af);
}
.sv-hp-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--accent, #1e40af);
    text-decoration: none;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
    transition: all .2s ease;
}
.sv-hp-card-btn:hover {
    color: #0f172a;
    padding-left: 6px;
}
.sv-hp-card-btn i {
    transition: transform .2s ease;
}
.sv-hp-card-btn:hover i {
    transform: translateX(4px);
}

/* ── B2B Value Section ────────────────────────────────────────── */
.sv-hp-b2b-value {
    padding: 70px 0;
    background: #fff;
}
.sv-hp-b2b-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}
.sv-hp-b2b-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}
.sv-hp-b2b-list li {
    padding: 10px 0;
    font-size: .95rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.sv-hp-b2b-list li i {
    color: #f97316;
    margin-top: 3px;
    min-width: 18px;
}
.sv-hp-b2b-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.sv-hp-b2b-feature {
    background: #f8fafc;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid #e2e8f0;
    transition: all .3s ease;
}
.sv-hp-b2b-feature:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    border-color: #cbd5e1;
}
.sv-hp-b2b-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.sv-hp-b2b-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.sv-hp-b2b-feature p {
    font-size: .86rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ── FAQ Section (uses Bootstrap accordion) ───────────────────── */
.sv-lp-faq {
    padding: 70px 0;
    background: #f8fafc;
}
.sv-lp-faq .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.sv-lp-faq .accordion-button {
    font-weight: 600;
    font-size: .95rem;
    color: #0f172a;
    background: #fff;
    padding: 16px 20px;
}
.sv-lp-faq .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: #1e40af;
    box-shadow: none;
}
.sv-lp-faq .accordion-button:focus {
    box-shadow: none;
    border-color: #e2e8f0;
}
.sv-lp-faq .accordion-body {
    font-size: .9rem;
    color: #475569;
    line-height: 1.65;
    padding: 12px 20px 20px;
}

/* =============================================================================
   HOMEPAGE RESPONSIVE BREAKPOINTS
   ============================================================================= */

@media (max-width: 1199px) {
    .sv-hp-specialty-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .sv-hp-specialty-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp-b2b-features-grid { grid-template-columns: 1fr 1fr; }
    .sv-hp-hero-stats-card { display: none; }
}

@media (max-width: 767px) {
    .sv-hp-specialties { padding: 40px 0; }
    .sv-hp-specialty-grid { grid-template-columns: 1fr; gap: 16px; }
    .sv-hp-b2b-value { padding: 40px 0; }
    .sv-hp-b2b-features-grid { grid-template-columns: 1fr; }
    .sv-hp-specialty-card { padding: 20px 16px; }
    .sv-lp-faq { padding: 40px 0; }
}


/* =============================================================================
   HOMEPAGE v2 — COMPETITOR-INSPIRED REDESIGN
   Color Palette: Medical Teal (#0f766e) + Warm Gold (#d4a843)
   ============================================================================= */

/* === HP2 HERO === */
.sv-hp2-hero {
    background: linear-gradient(145deg, #042f2e 0%, #0f766e 40%, #064e3b 100%);
    padding: 80px 0 50px;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.sv-hp2-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 30h-4v4h-4v-4h-2v4h-4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}
.sv-hp2-hero .container { position: relative; z-index: 1; }

/* Hero badge */
.sv-hp2-hero-badge {
    display: inline-block;
    color: #d4a843;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.sv-hp2-hero-badge i { margin-right: 8px; }

/* Hero title */
.sv-hp2-hero-title {
    color: #ffffff;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.sv-hp2-hero-accent {
    color: #99f6e4;
    font-weight: 700;
    font-size: 0.85em;
}

/* Hero description */
.sv-hp2-hero-desc {
    color: #ccfbf1;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
    opacity: 0.92;
}

/* Hero CTA */
.sv-hp2-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* === GOLD BUTTON (primary) === */
.sv-hp2-btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #d4a843, #b8860b);
    color: #1a1a1a !important;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(212,168,67,0.35);
}
.sv-hp2-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212,168,67,0.5);
    color: #1a1a1a !important;
}
.sv-hp2-btn-gold i { margin-right: 8px; }

/* === OUTLINE BUTTON (hero) === */
.sv-hp2-btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.4);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: transparent;
}
.sv-hp2-btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.12);
    color: #ffffff !important;
}
.sv-hp2-btn-outline i { margin-right: 8px; }

/* === OUTLINE BUTTON (light sections) === */
.sv-hp2-btn-outline-light {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: transparent;
}
.sv-hp2-btn-outline-light:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.15);
    color: #ffffff !important;
}
.sv-hp2-btn-outline-light i { margin-right: 8px; }

/* Hero Stats (glass cards) */
.sv-hp2-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sv-hp2-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}
.sv-hp2-stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.13);
}
.sv-hp2-stat-card i {
    color: #d4a843;
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: block;
}
.sv-hp2-stat-num {
    display: block;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
}
.sv-hp2-stat-lbl {
    display: block;
    color: #99f6e4;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}


/* === HP2 USP STRIP === */
.sv-hp2-usp {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}
.sv-hp2-usp-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sv-hp2-usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sv-hp2-usp-item i {
    color: #0f766e;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.sv-hp2-usp-text strong {
    display: block;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}
.sv-hp2-usp-text span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
}


/* === HP2 SECTION HEADERS === */
.sv-hp2-section-hdr {
    text-align: center;
    margin-bottom: 45px;
}
.sv-hp2-section-badge {
    display: inline-block;
    color: #0f766e;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.sv-hp2-section-badge i { margin-right: 8px; }
.sv-hp2-section-title {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
}
.sv-hp2-section-sub {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}


/* === HP2 SPECIALTY GRID === */
.sv-hp2-specialties {
    padding: 65px 0;
    background: #f8fafc;
}
.sv-hp2-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sv-hp2-spec-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 22px 22px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.sv-hp2-spec-card a { text-decoration: none !important; }
.sv-hp2-spec-name a { color: #0f172a; text-decoration: none !important; }
.sv-hp2-spec-name a:hover { color: var(--card-accent, #0f766e); }
.sv-hp2-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent, #0f766e);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sv-hp2-spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-color: var(--card-accent, #0f766e);
}
.sv-hp2-spec-card:hover::before { opacity: 1; }

.sv-hp2-spec-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    background: color-mix(in srgb, var(--card-accent, #0f766e) 10%, white);
    color: var(--card-accent, #0f766e);
}
.sv-hp2-spec-name {
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.sv-hp2-spec-tag {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}
.sv-hp2-spec-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.sv-hp2-spec-count,
.sv-hp2-card-sub {
    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 600;
}
.sv-hp2-spec-count i,
.sv-hp2-card-sub i { margin-right: 4px; }
.sv-hp2-spec-explore {
    color: var(--card-accent, #0f766e);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
}
.sv-hp2-spec-explore i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.sv-hp2-spec-card:hover .sv-hp2-spec-explore i {
    transform: translateX(4px);
}


/* === HP2 WHY CHOOSE US === */
.sv-hp2-why {
    padding: 65px 0;
    background: #ffffff;
}
.sv-hp2-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sv-hp2-why-card {
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    border-radius: 14px;
    padding: 32px 26px;
    text-align: center;
    transition: all 0.3s ease;
}
.sv-hp2-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15,118,110,0.1);
    border-color: #0f766e;
}
.sv-hp2-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f766e, #059669);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}
.sv-hp2-why-card h3 {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.sv-hp2-why-card p {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}


/* === HP2 CUSTOM MANUFACTURING BANNER === */
.sv-hp2-mfg-banner {
    padding: 0;
    background: linear-gradient(135deg, #042f2e, #0f766e);
}
.sv-hp2-mfg-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    flex-wrap: wrap;
}
.sv-hp2-mfg-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(212,168,67,0.2);
    border: 1px solid rgba(212,168,67,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sv-hp2-mfg-icon i {
    color: #d4a843;
    font-size: 1.6rem;
}
.sv-hp2-mfg-text {
    flex: 1;
}
.sv-hp2-mfg-text h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.sv-hp2-mfg-text p {
    color: #ccfbf1;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    opacity: 0.9;
}


/* === HP2 STATS COUNTER === */
.sv-hp2-stats {
    padding: 55px 0;
    background: linear-gradient(145deg, #0f766e, #064e3b);
}
.sv-hp2-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}
.sv-hp2-stats-item {
    padding: 10px;
}
.sv-hp2-stats-num {
    color: #d4a843;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}
.sv-hp2-stats-lbl {
    color: #ccfbf1;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* === HP2 AUDIENCE === */
.sv-hp2-audience {
    padding: 65px 0;
    background: #f8fafc;
}
.sv-hp2-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sv-hp2-audience-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.sv-hp2-audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.sv-hp2-audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f0fdfa;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}
.sv-hp2-audience-card h4 {
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sv-hp2-audience-card p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}


/* === HP2 PROCESS STEPS === */
.sv-hp2-process {
    padding: 65px 0;
    background: #ffffff;
}
.sv-hp2-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}
.sv-hp2-process-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #0f766e, #059669, #0f766e);
    border-radius: 3px;
    opacity: 0.2;
}
.sv-hp2-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.sv-hp2-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #059669);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 15px rgba(15,118,110,0.3);
}
.sv-hp2-step h4 {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sv-hp2-step p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}


/* === HP2 CTA === */
.sv-hp2-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #042f2e, #0f766e);
}
.sv-hp2-cta-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.sv-hp2-cta-text {
    color: #ccfbf1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 28px;
    opacity: 0.92;
}
.sv-hp2-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* === HP2 FAQ === */
.sv-hp2-faq {
    padding: 65px 0;
    background: #f8fafc;
}
.sv-hp2-faq .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.sv-hp2-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
    padding: 16px 20px;
    background: #ffffff;
}
.sv-hp2-faq .accordion-button:not(.collapsed) {
    background: #f0fdfa;
    color: #0f766e;
    box-shadow: none;
}
.sv-hp2-faq .accordion-button:focus {
    box-shadow: none;
    border-color: #e2e8f0;
}
.sv-hp2-faq .accordion-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    padding: 12px 20px 20px;
}


/* =============================================================================
   HOMEPAGE v2 RESPONSIVE
   ============================================================================= */

@media (max-width: 1199px) {
    .sv-hp2-spec-grid { grid-template-columns: repeat(3, 1fr); }
    .sv-hp2-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .sv-hp2-spec-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp2-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp2-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp2-process-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp2-process-grid::before { display: none; }
    .sv-hp2-hero-stats { display: none; }
    .sv-hp2-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .sv-hp2-mfg-inner { text-align: center; justify-content: center; }
    .sv-hp2-hero-title { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .sv-hp2-hero { padding: 50px 0 35px; min-height: auto; }
    .sv-hp2-hero-title { font-size: 1.8rem; }
    .sv-hp2-hero-desc { font-size: 0.95rem; }
    .sv-hp2-spec-grid { grid-template-columns: 1fr; gap: 14px; }
    .sv-hp2-why-grid { grid-template-columns: 1fr; }
    .sv-hp2-audience-grid { grid-template-columns: 1fr; }
    .sv-hp2-process-grid { grid-template-columns: 1fr; }
    .sv-hp2-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp2-usp-grid { flex-direction: column; align-items: flex-start; gap: 14px; }
    .sv-hp2-section-title { font-size: 1.5rem; }
    .sv-hp2-specialties { padding: 40px 0; }
    .sv-hp2-why { padding: 40px 0; }
    .sv-hp2-audience { padding: 40px 0; }
    .sv-hp2-process { padding: 40px 0; }
    .sv-hp2-faq { padding: 40px 0; }
    .sv-hp2-mfg-inner { flex-direction: column; text-align: center; padding: 30px 0; }
}


/* ====================================================================
 *  HOMEPAGE SPECIALTIES v3 — Medical Industry Navy Blue Theme
 *  Based on competitor research: GerMedUSA, gSource, SurgiPro, etc.
 *  Navy primary + Sea Green CTA + Gold accents
 *  Prefix: sv-hp3-*
 * ==================================================================== */

/* --- ROOT PALETTE --- */
:root {
    --hp3-navy:      #1B3A5C;
    --hp3-steel:     #3D7AB5;
    --hp3-green:     #2E8B57;
    --hp3-gold:      #C8963E;
    --hp3-charcoal:  #1A2332;
    --hp3-light-bg:  #F7F9FC;
    --hp3-text:      #1D2939;
    --hp3-text-muted:#5A6677;
    --hp3-border:    #E4E9F0;
    --hp3-white:     #ffffff;
}


/* ==========================
 *  HERO SECTION
 * ========================== */
.sv-hp3-hero {
    background: linear-gradient(135deg, #0F2640 0%, #1B3A5C 35%, #234A72 65%, #1B3A5C 100%);
    color: #fff;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.sv-hp3-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(61,122,181,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(200,150,62,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.sv-hp3-hero .container { position: relative; z-index: 1; }

.sv-hp3-hero-badge {
    display: inline-block;
    background: rgba(200,150,62,0.15);
    border: 1px solid rgba(200,150,62,0.35);
    color: #E8C874;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.sv-hp3-hero-badge i { margin-right: 6px; }

.sv-hp3-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: #fff;
}

.sv-hp3-hero-accent {
    font-size: 1.25rem;
    font-weight: 500;
    color: #7FB8E8;
    margin-bottom: 16px;
}

.sv-hp3-hero-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin-bottom: 28px;
}

.sv-hp3-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }


/* --- HERO METRIC CARDS --- */
.sv-hp3-hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.sv-hp3-metric {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: transform 0.25s, border-color 0.25s;
}
.sv-hp3-metric:hover {
    transform: translateY(-3px);
    border-color: rgba(200,150,62,0.4);
}
.sv-hp3-metric i {
    display: block;
    font-size: 1.3rem;
    color: #C8963E;
    margin-bottom: 8px;
}
.sv-hp3-metric-val {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
.sv-hp3-metric-lbl {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}


/* ==========================
 *  BUTTONS — Reusable
 * ========================== */
.sv-hp3-btn-primary {
    display: inline-block;
    background: #2E8B57;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.25s;
    border: 2px solid #2E8B57;
}
.sv-hp3-btn-primary:hover { background: #257A4B; border-color: #257A4B; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(46,139,87,0.3); }
.sv-hp3-btn-primary i { margin-right: 8px; }

.sv-hp3-btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.35);
    transition: all 0.25s;
}
.sv-hp3-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.sv-hp3-btn-outline i { margin-right: 8px; }

.sv-hp3-btn-outline-light {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.25s;
}
.sv-hp3-btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.sv-hp3-btn-outline-light i { margin-right: 8px; }

.sv-hp3-btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #C8963E, #D4A84F);
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.25s;
    border: none;
    box-shadow: 0 2px 8px rgba(200,150,62,0.3);
}
.sv-hp3-btn-gold:hover { background: linear-gradient(135deg, #B8862E, #C8963E); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(200,150,62,0.4); }
.sv-hp3-btn-gold i { margin-right: 8px; }


/* ==========================
 *  USP STRIP
 * ========================== */
.sv-hp3-usp {
    background: var(--hp3-light-bg);
    border-bottom: 1px solid var(--hp3-border);
    padding: 18px 0;
}
.sv-hp3-usp-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.sv-hp3-usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sv-hp3-usp-item i {
    font-size: 1.4rem;
    color: var(--hp3-navy);
    flex-shrink: 0;
}
.sv-hp3-usp-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hp3-text);
}
.sv-hp3-usp-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--hp3-text-muted);
}


/* ==========================
 *  SECTION HEADER (reusable)
 * ========================== */
.sv-hp3-hdr {
    text-align: center;
    margin-bottom: 40px;
}
.sv-hp3-badge {
    display: inline-block;
    background: rgba(27,58,92,0.08);
    color: var(--hp3-navy);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.sv-hp3-badge i { margin-right: 6px; }
.sv-hp3-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hp3-text);
    margin-bottom: 12px;
    line-height: 1.25;
}
.sv-hp3-subtitle {
    font-size: 1.05rem;
    color: var(--hp3-text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ==========================
 *  SPECIALTY GRID — Cards
 * ========================== */
.sv-hp3-specialties {
    padding: 60px 0;
    background: var(--hp3-white);
}
.sv-hp3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sv-hp3-card {
    background: #fff;
    border: 1px solid var(--hp3-border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.sv-hp3-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--hp3-navy);
    transition: height 0.3s;
}
.sv-hp3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27,58,92,0.12);
    border-color: transparent;
}
.sv-hp3-card:hover::before { height: 5px; }

.sv-hp3-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
    background: rgba(27,58,92,0.06);
    color: var(--hp3-navy);
    transition: all 0.3s;
}
.sv-hp3-card:hover .sv-hp3-card-icon {
    background: var(--hp3-navy);
    color: #fff;
}

.sv-hp3-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--hp3-text);
}
.sv-hp3-card-name a {
    color: inherit !important;
    text-decoration: none !important;
}
.sv-hp3-card-name a:hover { color: var(--hp3-navy) !important; }

.sv-hp3-card-tag {
    font-size: 0.8rem;
    color: var(--hp3-text-muted);
    margin-bottom: 10px;
    font-style: italic;
    opacity: 0.85;
}

.sv-hp3-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}
.sv-hp3-card-count {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hp3-navy);
}
.sv-hp3-card-sub {
    font-size: 0.76rem;
    color: var(--hp3-text-muted);
}
.sv-hp3-card-sub i { margin-right: 4px; font-size: 0.7rem; }

.sv-hp3-card-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hp3-steel) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.sv-hp3-card-link i { margin-left: 4px; transition: transform 0.2s; font-size: 0.75rem; }
.sv-hp3-card-link:hover { color: var(--hp3-navy) !important; }
.sv-hp3-card:hover .sv-hp3-card-link i { transform: translateX(3px); }


/* --- Per-specialty accent colors (top bar) --- */
.sv-hp3-card-general::before   { background: #1B3A5C; }
.sv-hp3-card-neuro::before     { background: #6C3FC5; }
.sv-hp3-card-ortho::before     { background: #0E7C61; }
.sv-hp3-card-cardio::before    { background: #C0392B; }
.sv-hp3-card-ent::before       { background: #2980B9; }
.sv-hp3-card-ophthal::before   { background: #16A085; }
.sv-hp3-card-sets::before      { background: #D4A84F; }
.sv-hp3-card-dental::before    { background: #3498DB; }
.sv-hp3-card-plastic::before   { background: #E67E22; }
.sv-hp3-card-maxillo::before   { background: #8E44AD; }
.sv-hp3-card-retract::before   { background: #2C3E50; }
.sv-hp3-card-gyn::before       { background: #E74C7D; }
.sv-hp3-card-electro::before   { background: #F39C12; }
.sv-hp3-card-derm::before      { background: #1ABC9C; }
.sv-hp3-card-specialty::before { background: #34495E; }
.sv-hp3-card-other::before     { background: #7F8C8D; }

/* Per-specialty icon color on hover */
.sv-hp3-card-general:hover .sv-hp3-card-icon   { background: #1B3A5C; }
.sv-hp3-card-neuro:hover .sv-hp3-card-icon     { background: #6C3FC5; }
.sv-hp3-card-ortho:hover .sv-hp3-card-icon     { background: #0E7C61; }
.sv-hp3-card-cardio:hover .sv-hp3-card-icon    { background: #C0392B; }
.sv-hp3-card-ent:hover .sv-hp3-card-icon       { background: #2980B9; }
.sv-hp3-card-ophthal:hover .sv-hp3-card-icon   { background: #16A085; }
.sv-hp3-card-sets:hover .sv-hp3-card-icon      { background: #D4A84F; }
.sv-hp3-card-dental:hover .sv-hp3-card-icon    { background: #3498DB; }
.sv-hp3-card-plastic:hover .sv-hp3-card-icon   { background: #E67E22; }
.sv-hp3-card-maxillo:hover .sv-hp3-card-icon   { background: #8E44AD; }
.sv-hp3-card-retract:hover .sv-hp3-card-icon   { background: #2C3E50; }
.sv-hp3-card-gyn:hover .sv-hp3-card-icon       { background: #E74C7D; }
.sv-hp3-card-electro:hover .sv-hp3-card-icon   { background: #F39C12; }
.sv-hp3-card-derm:hover .sv-hp3-card-icon      { background: #1ABC9C; }
.sv-hp3-card-specialty:hover .sv-hp3-card-icon { background: #34495E; }
.sv-hp3-card-other:hover .sv-hp3-card-icon     { background: #7F8C8D; }


/* ==========================
 *  WHY CHOOSE US
 * ========================== */
.sv-hp3-why {
    padding: 60px 0;
    background: var(--hp3-light-bg);
}
.sv-hp3-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.sv-hp3-why-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--hp3-border);
    transition: all 0.3s;
}
.sv-hp3-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(27,58,92,0.1);
    border-color: var(--hp3-steel);
}
.sv-hp3-why-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: rgba(27,58,92,0.07);
    color: var(--hp3-navy);
    font-size: 1.2rem;
    transition: all 0.3s;
}
.sv-hp3-why-card:hover .sv-hp3-why-icon { background: var(--hp3-navy); color: #fff; }
.sv-hp3-why-card h3 { font-size: 1rem; font-weight: 700; color: var(--hp3-text); margin-bottom: 8px; }
.sv-hp3-why-card p { font-size: 0.88rem; color: var(--hp3-text-muted); line-height: 1.6; margin: 0; }


/* ==========================
 *  CUSTOM MANUFACTURING
 * ========================== */
.sv-hp3-mfg {
    padding: 0;
    background: linear-gradient(135deg, #0F2640, #1B3A5C);
}
.sv-hp3-mfg-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 40px 0;
}
.sv-hp3-mfg-icon {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(200,150,62,0.15);
    font-size: 1.6rem;
    color: #E8C874;
}
.sv-hp3-mfg-text { flex: 1; }
.sv-hp3-mfg-text h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sv-hp3-mfg-text p { font-size: 0.95rem; color: rgba(255,255,255,0.78); margin: 0; line-height: 1.6; }


/* ==========================
 *  STATS COUNTER
 * ========================== */
.sv-hp3-stats {
    padding: 50px 0;
    background: var(--hp3-white);
    border-top: 1px solid var(--hp3-border);
    border-bottom: 1px solid var(--hp3-border);
}
.sv-hp3-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}
.sv-hp3-stats-item { padding: 10px 0; }
.sv-hp3-stats-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hp3-navy);
    line-height: 1.1;
}
.sv-hp3-stats-lbl {
    font-size: 0.78rem;
    color: var(--hp3-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}


/* ==========================
 *  WHO WE SERVE
 * ========================== */
.sv-hp3-audience {
    padding: 60px 0;
    background: var(--hp3-light-bg);
}
.sv-hp3-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sv-hp3-aud-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--hp3-border);
    transition: all 0.3s;
}
.sv-hp3-aud-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(27,58,92,0.1);
}
.sv-hp3-aud-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    background: rgba(46,139,87,0.08);
    color: var(--hp3-green);
    font-size: 1.1rem;
}
.sv-hp3-aud-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--hp3-text); margin-bottom: 6px; }
.sv-hp3-aud-card p { font-size: 0.85rem; color: var(--hp3-text-muted); line-height: 1.55; margin: 0; }


/* ==========================
 *  HOW IT WORKS (Steps)
 * ========================== */
.sv-hp3-process {
    padding: 60px 0;
    background: var(--hp3-white);
}
.sv-hp3-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.sv-hp3-step {
    text-align: center;
    position: relative;
}
.sv-hp3-step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--hp3-navy);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 2px 10px rgba(27,58,92,0.2);
}
.sv-hp3-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--hp3-text); margin-bottom: 6px; }
.sv-hp3-step p { font-size: 0.85rem; color: var(--hp3-text-muted); line-height: 1.55; margin: 0; }


/* ==========================
 *  CTA SECTION
 * ========================== */
.sv-hp3-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F2640, #1B3A5C, #234A72);
    color: #fff;
}
.sv-hp3-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
}
.sv-hp3-cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.sv-hp3-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ==========================
 *  FAQ
 * ========================== */
.sv-hp3-faq {
    padding: 60px 0;
    background: var(--hp3-light-bg);
}
.sv-hp3-faq .accordion-item {
    border: 1px solid var(--hp3-border);
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.sv-hp3-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--hp3-text);
    background: #fff;
    padding: 16px 20px;
}
.sv-hp3-faq .accordion-button:not(.collapsed) {
    background: rgba(27,58,92,0.04);
    color: var(--hp3-navy);
    box-shadow: none;
}
.sv-hp3-faq .accordion-button:focus { box-shadow: none; }
.sv-hp3-faq .accordion-body {
    font-size: 0.9rem;
    color: var(--hp3-text-muted);
    line-height: 1.65;
    padding: 0 20px 16px;
}


/* ==========================
 *  RESPONSIVE
 * ========================== */
@media (max-width: 991px) {
    .sv-hp3-hero { padding: 50px 0 40px; }
    .sv-hp3-hero-title { font-size: 2rem; }
    .sv-hp3-hero-accent { font-size: 1.1rem; }
    .sv-hp3-grid { grid-template-columns: repeat(3, 1fr); }
    .sv-hp3-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp3-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .sv-hp3-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp3-steps { grid-template-columns: repeat(2, 1fr); }
    .sv-hp3-mfg-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
    .sv-hp3-hero { padding: 40px 0 30px; }
    .sv-hp3-hero-title { font-size: 1.6rem; }
    .sv-hp3-hero-accent { font-size: 1rem; }
    .sv-hp3-hero-desc { font-size: 0.95rem; }
    .sv-hp3-title { font-size: 1.5rem; }
    .sv-hp3-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sv-hp3-card { padding: 18px 14px; }
    .sv-hp3-why-grid { grid-template-columns: 1fr; }
    .sv-hp3-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-hp3-audience-grid { grid-template-columns: 1fr; }
    .sv-hp3-steps { grid-template-columns: 1fr; gap: 16px; }
    .sv-hp3-usp-grid { flex-direction: column; align-items: flex-start; gap: 14px; }
    .sv-hp3-cta-title { font-size: 1.5rem; }
    .sv-hp3-cta-btns { flex-direction: column; align-items: center; }
    .sv-hp3-btn-primary, .sv-hp3-btn-outline, .sv-hp3-btn-outline-light, .sv-hp3-btn-gold { 
        width: 100%; text-align: center; 
    }
    .sv-hp3-hero-actions { flex-direction: column; }
    .sv-hp3-hero-actions a { width: 100%; text-align: center; }
    .sv-hp3-hero-tertiary { flex-direction: column; align-items: center; }
    .sv-hp3-mfg-inner { padding: 30px 0; }
    .sv-hp3-trust-row { flex-wrap: wrap; gap: 10px; justify-content: center; }
    .sv-hp3-trust-item { font-size: 0.75rem; }
}


/* ==========================
 *  v4: TRUST STRIP (under hero)
 * ========================== */
.sv-hp3-trust {
    background: var(--hp3-charcoal);
    padding: 14px 0;
    border-top: 2px solid var(--hp3-gold);
}
.sv-hp3-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
/* Trust strip fix: stop strong/span from behaving like separate columns */
.sv-hp3-trust .sv-hp3-trust-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 10px 10px;
    border-radius: 12px;
    text-transform: none !important;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
}
.sv-hp3-trust .sv-hp3-trust-item strong,
.sv-hp3-trust .sv-hp3-trust-item span {
    display: block !important;
    width: auto !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}
.sv-hp3-trust .sv-hp3-trust-item span { opacity: 0.85; font-size: 0.9rem; }
.sv-hp3-trust-item i {
    color: var(--hp3-gold);
    font-size: 0.85rem;
}

/* ==========================
 *  v4: BUYER PATH CARDS
 * ========================== */
.sv-hp3-buyer { padding: 34px 0; }
.sv-hp3-buyer-card {
    height: 100%;
    border-radius: 16px;
    padding: 22px;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--hp3-border);
    transition: all 0.3s;
}
.sv-hp3-buyer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(27,58,92,0.1);
    border-color: var(--hp3-steel);
}
.sv-hp3-buyer-title { margin: 0 0 8px; font-size: 1.1rem; font-weight: 700; color: var(--hp3-text); }
.sv-hp3-buyer-desc { margin: 0 0 12px; opacity: 0.9; font-size: 0.9rem; color: var(--hp3-text-muted); line-height: 1.6; }
.sv-hp3-buyer-list { margin: 0 0 14px; padding-left: 18px; }
.sv-hp3-buyer-list li { margin: 6px 0; opacity: 0.92; font-size: 0.88rem; color: var(--hp3-text-muted); }
.sv-hp3-buyer-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ==========================
 *  v4: HERO TERTIARY LINKS
 * ========================== */
.sv-hp3-hero-tertiary {
    display: flex;
    gap: 24px;
    margin-top: 14px;
}
.sv-hp3-link-subtle {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.sv-hp3-link-subtle:hover {
    color: var(--hp3-gold);
    text-decoration: none;
}
.sv-hp3-link-subtle i {
    font-size: 0.9rem;
}

/* ==========================
 *  v4: HERO BADGE SEPARATOR
 * ========================== */
.sv-hp3-badge-sep {
    opacity: 0.5;
    margin: 0 2px;
}
