/**
 * SignalMatrix AI - Shared Specialty Page Stylesheet
 * Used by: dental, orthodontist, physicians, cosmetic surgery
 * Depends on: style.css (custom properties), Bootstrap 5.3.2, Bootstrap Icons, Inter font
 */

/* ═══════════════════════════════════════════════════════════════════
   UTILITY / SHARED
   ═══════════════════════════════════════════════════════════════════ */

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

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════════════
   1. OFFER HERO
   ═══════════════════════════════════════════════════════════════════ */

.offer-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: var(--bg-dark, #0a0a0f);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroPulse {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.05); }
}

.offer-hero .container {
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.offer-badge i {
    margin-right: 0.4rem;
}

.offer-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.offer-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.offer-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.offer-cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
}

.offer-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    border: none;
    color: #000;
}

.offer-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.offer-cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.offer-cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════════
   2. TRUST SECTION
   ═══════════════════════════════════════════════════════════════════ */

.trust-section {
    background: var(--bg-dark, #0a0a0f);
    border-bottom: 1px solid var(--border-color);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.trust-item i {
    font-size: 1rem;
    color: var(--primary);
}


/* ═══════════════════════════════════════════════════════════════════
   3. PROBLEM SECTION
   ═══════════════════════════════════════════════════════════════════ */

.offer-problem {
    background: var(--bg-dark, #0a0a0f);
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid #ff4757;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-left-color: #ff6b81;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.1);
}

.problem-card h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.problem-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 71, 87, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.problem-icon i {
    font-size: 1.75rem;
    color: #ff4757;
}


/* ═══════════════════════════════════════════════════════════════════
   4. SOLUTION SECTION
   ═══════════════════════════════════════════════════════════════════ */

.offer-solution {
    background: var(--bg-dark, #0a0a0f);
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.solution-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.solution-card.featured:hover {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.18);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.solution-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
    color: var(--primary);
}

.solution-card h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.solution-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.solution-list li i {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   5. MARKET STATS
   ═══════════════════════════════════════════════════════════════════ */

.offer-stats {
    background: var(--bg-dark, #0a0a0f);
}

.stat-highlight {
    padding: 1.5rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.stat-source {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-style: italic;
    margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════════════════════════════
   6. SPECIALTY SECTIONS  (multiple variants)
   ═══════════════════════════════════════════════════════════════════ */

/* --- 6a. Generic specialty card (physicians, fallback) --- */

.offer-specialty,
.physician-specialties,
.cosmetic-procedures,
.offer-ortho-why {
    background: var(--bg-dark, #0a0a0f);
}

.specialty-card,
.procedure-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialty-card:hover,
.procedure-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.specialty-card.featured,
.procedure-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.08);
}

.specialty-icon,
.procedure-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.specialty-card h5,
.procedure-card h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.specialty-card p,
.procedure-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.specialty-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.specialty-link,
.procedure-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.specialty-link:hover,
.procedure-link:hover {
    color: var(--primary);
    gap: 0.6rem;
}

/* --- 6b. Ortho insight cards (icon + text horizontal) --- */

.ortho-insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ortho-insight-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.ortho-insight-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.ortho-insight-card h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ortho-insight-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* --- 6c. Cosmetic insight cards --- */

.cosmetic-insights {
    background: var(--bg-dark, #0a0a0f);
}

.cosmetic-insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.cosmetic-insight-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cosmetic-insight-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.cosmetic-insight-card h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cosmetic-insight-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════════
   7. PACKAGES / PRICING
   ═══════════════════════════════════════════════════════════════════ */

.offer-packages {
    background: var(--bg-dark, #0a0a0f);
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Featured tier */
.package-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.12);
}

.package-card.featured:hover {
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
}

/* Premium tier */
.package-card.premium {
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.08);
}

.package-card.premium:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.package-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.premium-badge {
    background: linear-gradient(135deg, #ffd700, #ffaa00) !important;
    color: #000;
}

.package-header {
    margin-bottom: 1rem;
}

.package-header h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.package-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.package-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    vertical-align: super;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.package-card.featured .price-amount {
    color: var(--primary);
}

.package-card.premium .price-amount {
    color: #ffd700;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.package-features li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.package-features li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.package-features li strong {
    color: var(--text-primary);
}

.package-guarantee {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.6rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.package-guarantee i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.package-card .btn {
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    margin-top: auto;
}

.package-card .btn-primary {
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    border: none;
    color: #000;
}

.package-card .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-1px);
}

.package-card .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.package-card .btn-outline-primary:hover {
    background: var(--primary);
    color: #000;
}

.included-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: inline-block;
}

.included-note i {
    color: var(--primary);
}


/* ═══════════════════════════════════════════════════════════════════
   8. GUARANTEE
   ═══════════════════════════════════════════════════════════════════ */

.offer-guarantee {
    background: var(--bg-dark, #0a0a0f);
}

.guarantee-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.08);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.guarantee-card h2 {
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.guarantee-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.guarantee-point i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   9. GLP-1 OPPORTUNITY
   ═══════════════════════════════════════════════════════════════════ */

.glp1-opportunity {
    background: var(--bg-dark, #0a0a0f);
}

.glp1-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
}

.glp1-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.glp1-stat {
    padding: 1rem;
}

.glp1-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.glp1-stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* ═══════════════════════════════════════════════════════════════════
   10. DELIVERABLES / RESULTS
   ═══════════════════════════════════════════════════════════════════ */

.offer-results {
    background: var(--bg-dark, #0a0a0f);
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.result-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.08);
}

.result-card.featured:hover {
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.15);
}

.result-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.result-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-icon-large i {
    font-size: 1.35rem;
    color: var(--primary);
}

.result-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.result-quote {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.result-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
}

.result-feature i {
    color: var(--primary);
    font-size: 0.8rem;
}


/* ═══════════════════════════════════════════════════════════════════
   11. WHY US
   ═══════════════════════════════════════════════════════════════════ */

.offer-why {
    background: var(--bg-dark, #0a0a0f);
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.why-card h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   12. FOUNDING PARTNER / BONUS
   ═══════════════════════════════════════════════════════════════════ */

.offer-bonus {
    background: var(--bg-dark, #0a0a0f);
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.bonus-card h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-card h3 i {
    color: var(--primary);
}

.bonus-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.bonus-list li i {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.bonus-value {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.bonus-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}


/* ═══════════════════════════════════════════════════════════════════
   13. CONTACT FORM
   ═══════════════════════════════════════════════════════════════════ */

.offer-contact {
    background: var(--bg-dark, #0a0a0f);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

/* Dark-theme Bootstrap form overrides */
.offer-contact .form-label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.offer-contact .form-control,
.offer-contact .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer-contact .form-control:focus,
.offer-contact .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
    color: var(--text-primary);
}

.offer-contact .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.offer-contact .form-select option {
    background: #1a1a2e;
    color: var(--text-primary);
}

/* Package option pills (radio & checkbox) */
.package-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.package-option {
    cursor: pointer;
    display: inline-flex;
}

.package-option input {
    display: none;
}

.package-option span {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.package-option input:checked + span {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
}

.package-option:hover span {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.offer-contact .btn-primary {
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    border: none;
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.8rem 2rem;
}

.offer-contact .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.form-footer {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-footer i {
    color: var(--primary);
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════════
   14. FAQ  — Bootstrap Accordion Dark Theme Override
   ═══════════════════════════════════════════════════════════════════ */

.offer-faq {
    background: var(--bg-dark, #0a0a0f);
}

.offer-faq .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--border-color);
}

.offer-faq .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.offer-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--primary);
}

.offer-faq .accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    border: none;
}

.offer-faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
}

.offer-faq .accordion-button::after {
    filter: invert(1) brightness(0.7);
    transition: transform 0.3s ease;
}

.offer-faq .accordion-button:not(.collapsed)::after {
    filter: invert(0.5) sepia(1) saturate(10) hue-rotate(100deg) brightness(1.2);
}

.offer-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.offer-faq .accordion-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 1.5rem 1.25rem;
}

.offer-faq .accordion-body a {
    color: var(--primary);
}

.offer-faq .accordion-collapse {
    transition: height 0.35s ease;
}


/* ═══════════════════════════════════════════════════════════════════
   15. RELATED SPECIALTIES
   ═══════════════════════════════════════════════════════════════════ */

.related-specialties {
    background: var(--bg-dark, #0a0a0f);
    border-top: 1px solid var(--border-color);
}

.related-specialties .related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.related-specialties .related-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.related-specialties .related-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.related-specialties .related-card h6 {
    color: var(--text-primary);
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.related-specialties .related-card small {
    color: var(--text-secondary);
}


/* ═══════════════════════════════════════════════════════════════════
   16. FINAL CTA
   ═══════════════════════════════════════════════════════════════════ */

.offer-final-cta {
    background: var(--bg-dark, #0a0a0f);
}

.final-cta-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), rgba(0, 212, 255, 0.06));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
    animation: ctaGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%   { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1;   transform: scale(1.1); }
}

.final-cta-card h2 {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.final-cta-card .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gradient-start, #00ff88), var(--gradient-end, #00d4ff));
    border: none;
    color: #000;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
}

.cta-note i {
    color: var(--primary);
}


/* ═══════════════════════════════════════════════════════════════════
   17. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

/* Large tablets / small desktops */
@media (max-width: 1199.98px) {
    .offer-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .final-cta-card {
        padding: 3rem 2rem;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .py-6 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .offer-hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }

    .offer-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .guarantee-card {
        padding: 2rem;
    }

    .bonus-card {
        padding: 2rem;
    }

    .glp1-card {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .final-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .final-cta-card h2 {
        font-size: 1.8rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .offer-hero {
        padding: 6rem 0 3rem;
    }

    .offer-title {
        font-size: 2rem;
    }

    .offer-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .offer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .offer-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .trust-badges {
        gap: 0.75rem 1.5rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Pricing: 1 column on mobile */
    .offer-packages .col-lg-3,
    .offer-packages .col-lg-4,
    .offer-packages .col-lg-6 {
        width: 100%;
    }

    .package-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-points {
        grid-template-columns: 1fr;
    }

    .bonus-card {
        padding: 1.5rem;
    }

    .bonus-value {
        margin-top: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .package-options {
        gap: 0.4rem;
    }

    .package-option span {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .final-cta-card {
        padding: 2rem 1.25rem;
    }

    .final-cta-card h2 {
        font-size: 1.5rem;
    }

    .result-features {
        flex-direction: column;
    }

    .glp1-card {
        padding: 1.5rem;
    }

    .glp1-stat-number {
        font-size: 2rem;
    }
}

/* Tablet pricing: 2-column */
@media (min-width: 768px) and (max-width: 991.98px) {
    .offer-packages .col-lg-3 {
        width: 50%;
    }
}

/* Small phones */
@media (max-width: 479.98px) {
    .offer-title {
        font-size: 1.7rem;
    }

    .offer-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
}
