/**
 * Company Card CTA Styles
 * CRO-optimized styles for supplier and construction company detail pages
 */

/* ==========================================================================
   CSS CUSTOM PROPERTIES - Design tokens
   ========================================================================== */

:root {
    /* CTA Colors (WCAG AA compliant - 4.51:1 contrast) */
    --cta-gradient-start: #0d9488;
    --cta-gradient-end: #14b8a6;
    --cta-shadow: rgba(13, 148, 136, 0.3);

    /* Unified Theme (Blue) */
    --theme-primary: #2563eb;
    --theme-light: #3b82f6;
    --theme-bg-light: #eff6ff;
    --theme-bg-medium: #dbeafe;
    --theme-border: #3b82f6;
    --theme-text-dark: #1e40af;
}

/* ==========================================================================
   LOOKING FOR BLOCK - Prominent CTA with phone
   ========================================================================== */

.looking-for-prominent {
    background: linear-gradient(135deg, var(--cta-gradient-start), var(--cta-gradient-end));
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px var(--cta-shadow);
}

.looking-for-prominent h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0.75rem 0 0.25rem;
}

.looking-for-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.looking-for-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.looking-for-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.phone-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--cta-gradient-start);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.phone-cta-large:hover {
    transform: scale(1.05);
    color: var(--cta-gradient-start);
    text-decoration: none;
}

.looking-for-help-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ==========================================================================
   PURCHASE SECTION - Compact sidebar purchase block
   ========================================================================== */

.purchase-section {
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.purchase-section.supplier-variant {
    background: linear-gradient(135deg, var(--theme-bg-light), var(--theme-bg-medium));
    border: 2px solid var(--theme-border);
}

.purchase-section .section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--theme-text-dark);
}

/* Masked contacts compact layout */
.masked-contacts-compact {
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.masked-contacts-compact .masked-contact-item {
    font-size: 0.85rem;
    color: #546e7a;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.masked-contacts-compact .masked-contact-item i {
    color: var(--theme-primary);
}

/* Purchase tiers compact */
.purchase-tiers-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tier-option-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.25rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tier-option-compact:hover {
    border-color: var(--theme-light);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    text-decoration: none;
}

.tier-option-compact.recommended {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
}

.tier-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.tier-scope-compact {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.tier-count-compact {
    font-size: 0.8rem;
    color: #666;
}

.tier-price-compact {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--theme-primary);
    margin-left: auto;
}

.tier-option-compact.recommended .tier-price-compact {
    color: #28a745;
}

.rec-badge {
    background: #28a745;
    color: #fff;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Trust signals compact */
.trust-signals-compact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.trust-item-compact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--theme-text-dark);
}

.trust-item-compact i {
    color: #28a745;
    font-size: 0.8rem;
}

/* ==========================================================================
   VALUE HERO BANNER - Above the fold value proposition
   ========================================================================== */

.value-hero-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.value-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.value-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.value-hero-banner h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.value-hero-banner h2 strong {
    color: #ffc107;
}

/* Hero Details - Key:Value format */
.hero-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-detail-item {
    display: inline-flex;
    align-items: center;
}

.hero-detail-item strong {
    color: #ffc107;
    margin-right: 0.35rem;
    font-weight: 600;
}

.hero-detail-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.value-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.value-checklist li {
    padding: 0.35rem 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.value-checklist li::before {
    content: none;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-from {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffc107;
}

.btn-hero-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1a2e;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,193,7,0.4);
    color: #1a1a2e;
    text-decoration: none;
}

/* ==========================================================================
   LOOKING FOR BLOCK - Objection handler for research traffic
   ========================================================================== */

.looking-for-block {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.looking-for-block i {
    font-size: 1.5rem;
    color: #856404;
    margin-bottom: 0.5rem;
    display: block;
}

.looking-for-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #856404;
    margin: 0 0 0.5rem 0;
}

.looking-for-block p {
    font-size: 0.875rem;
    color: #856404;
    margin: 0 0 0.75rem 0;
}

.looking-for-block a {
    display: inline-block;
    background: #856404;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.looking-for-block a:hover {
    background: #6c5003;
    color: #fff;
    text-decoration: none;
}

.looking-for-block small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #856404;
    opacity: 0.8;
}

/* ==========================================================================
   CONTACT LOCK ENHANCED - Prominent masked contacts with value
   ========================================================================== */

.contact-lock-enhanced {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-lock-enhanced .lock-icon {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 0.75rem;
}

.contact-lock-enhanced h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1565c0;
    margin: 0 0 1rem 0;
}

.masked-contacts {
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.masked-contact-item {
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #546e7a;
}

.masked-contact-item i {
    width: 24px;
    color: #1976d2;
}

.contact-lock-value {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
}

.contact-lock-value li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #1565c0;
}

.btn-unlock {
    display: inline-block;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-unlock:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ==========================================================================
   PURCHASE TIERS - Quick purchase options
   ========================================================================== */

.purchase-tiers {
    margin-bottom: 1.5rem;
}

.purchase-tiers h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
    text-align: center;
}

.tier-option {
    display: block;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.tier-option:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102,126,234,0.15);
    text-decoration: none;
    transform: translateY(-2px);
}

.tier-option.tier-recommended {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
}

.tier-option.tier-recommended:hover {
    border-color: #1e7e34;
    box-shadow: 0 4px 12px rgba(40,167,69,0.2);
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    text-transform: uppercase;
}

.tier-scope {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tier-count {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.tier-price {
    display: block;
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.tier-option.tier-recommended .tier-price {
    color: #28a745;
}

/* ==========================================================================
   TRUST SIGNALS - Build confidence near CTAs
   ========================================================================== */

.trust-signals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #495057;
}

.trust-item i {
    color: #28a745;
    font-size: 1rem;
}

/* ==========================================================================
   BOTTOM CTA ENHANCED - Final conversion push
   ========================================================================== */

.bottom-cta-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.bottom-cta-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.social-proof-strip {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.bottom-cta-enhanced h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.bottom-cta-enhanced > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 1.5rem 0;
}

.cta-box {
    position: relative;
    z-index: 1;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.btn-cta-large {
    display: inline-block;
    background: #fff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    color: #764ba2;
    text-decoration: none;
}

.guarantee {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.guarantee i {
    color: #28a745;
}

/* ==========================================================================
   STICKY PURCHASE BAR - Persistent CTA on scroll
   ========================================================================== */

.sticky-purchase-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 1rem;
    z-index: 1000;
    transition: bottom 0.3s ease;
}

.sticky-purchase-bar.visible {
    bottom: 0;
}

.sticky-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-bar-count {
    font-weight: 600;
    color: #333;
}

.sticky-bar-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
}

.btn-sticky-purchase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-sticky-purchase:hover {
    transform: scale(1.02);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   CTA BUTTONS - Primary and secondary variants
   ========================================================================== */

.btn-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
    color: #fff;
    text-decoration: none;
}

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: #667eea;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: rgba(102,126,234,0.1);
    color: #667eea;
    text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
    .value-hero-banner {
        padding: 1.5rem;
    }

    .value-hero-banner h2 {
        font-size: 1.25rem;
    }

    .hero-details {
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary {
        text-align: center;
    }

    .trust-signals {
        grid-template-columns: 1fr;
    }

    .bottom-cta-enhanced {
        padding: 2rem 1.5rem;
    }

    .bottom-cta-enhanced h3 {
        font-size: 1.25rem;
    }

    .price-display {
        font-size: 1.5rem;
    }

    .btn-cta-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .sticky-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-bar-info {
        justify-content: center;
    }

    .btn-sticky-purchase {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .value-hero-banner {
        padding: 1.25rem;
    }

    .value-badge {
        font-size: 0.8rem;
    }

    .hero-details {
        font-size: 0.8rem;
        gap: 0.375rem;
        margin-top: 0.5rem;
    }

    .hero-detail-separator {
        display: none;
    }

    .hero-detail-item {
        flex-basis: 100%;
    }

    .value-checklist li {
        font-size: 0.875rem;
    }

    .tier-option {
        padding: 0.875rem;
    }

    .masked-contacts {
        padding: 0.75rem;
    }
}

/* ==========================================================================
   CONTACTS PREVIEW - Full width block
   ========================================================================== */

.contact-preview-block-full {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 2px solid var(--theme-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   UNIFIED NAVIGATION BLOCK - Full width with two rows
   ========================================================================== */

.unified-navigation-block {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

/* Row 1: Purchase Tiers */
.purchase-tiers-row {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-bottom: 2px solid #e5e7eb;
    padding: 1.5rem;
}

.purchase-tiers-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.purchase-tiers-header i {
    font-size: 1.5rem;
    color: var(--theme-primary);
}

.purchase-tiers-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.purchase-tiers-horizontal {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.tier-option-horizontal {
    flex: 1;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.tier-option-horizontal:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.tier-option-horizontal.tier-all-russia {
    border-style: dashed;
    border-color: #9ca3af;
}

.tier-option-horizontal.tier-all-russia:hover {
    border-style: solid;
    border-color: var(--theme-primary);
}

.tier-badge-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.tier-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.tier-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-primary);
}

.tier-option-horizontal.tier-all-russia .tier-price {
    color: #6b7280;
    font-size: 1.75rem;
}

.tier-arrow-right {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.5rem;
    padding: 0 0.75rem;
    animation: pulse-horizontal 2s ease-in-out infinite;
}

@keyframes pulse-horizontal {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(4px);
    }
}

/* Row 2: Global Stats */
.global-stats-row {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex: 1;
    flex-wrap: wrap;
}

.stat-item-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-item-inline i {
    font-size: 1.75rem;
    color: #10b981;
    flex-shrink: 0;
}

.stat-item-inline.stat-price {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #fbbf24;
}

.stat-item-inline.stat-price i {
    color: #d97706;
}

.stat-value-inline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.stat-label-inline {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

.btn-calculator-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.btn-calculator-inline:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-calculator-inline i {
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 992px) {
    .purchase-tiers-horizontal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tier-arrow-right {
        display: none;
    }

    .stats-grid {
        gap: 1rem;
    }

    .global-stats-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-calculator-inline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .purchase-tiers-row {
        padding: 1.25rem;
    }

    .purchase-tiers-header h3 {
        font-size: 1.1rem;
    }

    .tier-name {
        font-size: 0.95rem;
        min-height: auto;
    }

    .tier-price {
        font-size: 1.1rem;
    }

    .global-stats-row {
        padding: 1.25rem;
    }

    .stats-grid {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .stat-value-inline {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .purchase-tiers-row {
        padding: 1rem;
    }

    .purchase-tiers-header {
        margin-bottom: 1rem;
    }

    .purchase-tiers-header i {
        font-size: 1.25rem;
    }

    .purchase-tiers-header h3 {
        font-size: 1rem;
    }

    .tier-option-horizontal {
        padding: 0.875rem 1rem;
    }

    .tier-badge-type {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }

    .tier-name {
        font-size: 0.9rem;
    }

    .tier-meta {
        font-size: 0.8rem;
    }

    .global-stats-row {
        padding: 1rem;
    }

    .stat-item-inline i {
        font-size: 1.5rem;
    }

    .stat-value-inline {
        font-size: 1.125rem;
    }

    .btn-calculator-inline {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Legacy dual navigation styles - kept for backward compatibility */
.dual-navigation-row {
    margin-bottom: 2rem;
}

/* Navigation Card Base Styles */
.nav-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-card-hint {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Material-Specific Card (Left) */
.material-specific-card {
    border: 2px solid var(--theme-border);
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.material-specific-card .nav-card-title {
    color: var(--theme-text-dark);
}

.material-specific-card .nav-card-title i {
    color: var(--theme-primary);
    font-size: 1.25rem;
}

/* Material Tiers */
.material-tiers {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

/* Tier Arrow - Connector between options */
.tier-arrow {
    text-align: center;
    padding: 0.25rem 0;
    color: #9ca3af;
    font-size: 1.125rem;
    opacity: 0.5;
}

.tier-arrow i {
    display: inline-block;
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(3px);
        opacity: 0.8;
    }
}

.material-tier-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 0.125rem 0;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.material-tier-option:hover {
    border-color: var(--theme-light);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    text-decoration: none;
    transform: translateY(-2px);
}

.material-tier-option.recommended-tier {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.material-tier-option.recommended-tier:hover {
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.material-tier-option.all-russia-tier {
    border-style: dashed;
    border-color: #9ca3af;
}

.material-tier-option.all-russia-tier:hover {
    border-color: var(--theme-primary);
    border-style: solid;
}

.tier-badge-corner {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0 8px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tier-location {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
}

.tier-count {
    font-size: 0.85rem;
    color: #6b7280;
}

.tier-price-badge {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--theme-primary);
    white-space: nowrap;
    margin-left: 1rem;
}

.material-tier-option.recommended-tier .tier-price-badge {
    color: #059669;
}

.material-tier-option.all-russia-tier .tier-price-badge {
    color: #6b7280;
    font-size: 1.5rem;
}

/* Global Database Card (Right) */
.global-database-card {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.global-database-card .nav-card-title {
    color: #065f46;
}

.global-database-card .nav-card-title i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Global Stats */
.global-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.global-stat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.global-stat-item i {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.global-stat-item.price-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fbbf24;
}

.global-stat-item.price-highlight i {
    color: #d97706;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

/* Global Calculator Button */
.btn-global-calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-global-calculator:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   SIDEBAR PHONE CTA - Compact version for sidebar
   ========================================================================== */

.sidebar-phone-cta {
    background: linear-gradient(135deg, var(--cta-gradient-start), var(--cta-gradient-end));
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 12px var(--cta-shadow);
}

.phone-cta-icon-small {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.phone-cta-icon-small i {
    font-size: 1.5rem;
    color: #fff;
}

.phone-cta-title-small {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.phone-cta-subtitle-small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0.875rem;
}

.phone-cta-button-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--cta-gradient-start);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    margin-bottom: 0.625rem;
}

.phone-cta-button-small:hover {
    transform: scale(1.05);
    color: var(--cta-gradient-start);
    text-decoration: none;
}

.phone-cta-help-small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   SIDEBAR TRUST & LINKS BLOCKS
   ========================================================================== */

.sidebar-trust-block,
.sidebar-links-block {
    background: white;
    border-radius: 10px;
    padding: 1.125rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.sidebar-block-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.875rem 0;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid #e5e7eb;
}

.trust-signals-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

/* ==========================================================================
   CONTACTS & PHONE CTA ROW - Legacy/fallback (can be removed later)
   ========================================================================== */

.contacts-phone-row {
    margin-bottom: 1.5rem;
}

/* Contact Preview Block - Left side (67%) */
.contact-preview-block {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 2px solid var(--theme-border);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-block-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--theme-text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
}

.contact-preview-grid-inline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex: 1;
}

.contact-preview-item-inline {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: white;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.2s ease;
}

.contact-preview-item-inline:hover {
    border-color: var(--theme-light);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.contact-icon-inline {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-inline i {
    font-size: 1.125rem;
    color: white;
}

.contact-details-inline {
    flex: 1;
    min-width: 0;
}

.contact-label-inline {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.contact-value-inline {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.unlock-prompt-inline {
    background: rgba(37, 99, 235, 0.08);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--theme-text-dark);
    margin-top: auto;
}

.unlock-prompt-inline i {
    color: var(--theme-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Phone CTA Block - Right side (33%) */
.phone-cta-block {
    background: linear-gradient(135deg, var(--cta-gradient-start), var(--cta-gradient-end));
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 16px var(--cta-shadow);
}

.phone-cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.phone-cta-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.phone-cta-title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.phone-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.phone-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--cta-gradient-start);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.phone-cta-button:hover {
    transform: scale(1.05);
    color: var(--cta-gradient-start);
    text-decoration: none;
}

.phone-cta-help {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   CONTACT PREVIEW CARD - Masked contacts in content area (legacy/fallback)
   ========================================================================== */

.contact-preview-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 2px solid var(--theme-border);
}

.contact-preview-card h2 {
    color: var(--theme-text-dark);
    border-bottom-color: var(--theme-border);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-preview-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.2s ease;
}

.contact-preview-item:hover {
    border-color: var(--theme-light);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.125rem;
    color: white;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.unlock-prompt {
    background: rgba(37, 99, 235, 0.08);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--theme-text-dark);
}

.unlock-prompt i {
    color: var(--theme-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   SIDEBAR COMBINED BLOCK - Purchase options + Links unified
   ========================================================================== */

.sidebar-combined-block {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.combined-block-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

/* Purchase Tiers - Sidebar variant */
.purchase-tiers-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tier-option-sidebar {
    display: block;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.tier-option-sidebar:hover {
    border-color: var(--theme-light);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    text-decoration: none;
    transform: translateY(-2px);
}

.tier-option-sidebar.tier-recommended {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.tier-option-sidebar.tier-recommended:hover {
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.tier-option-sidebar.tier-all-russia {
    border-style: dashed;
    border-color: #9ca3af;
}

.tier-option-sidebar.tier-all-russia:hover {
    border-color: var(--theme-primary);
    border-style: solid;
}

.tier-badge-ribbon {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0 8px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.75rem;
}

.tier-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
}

.tier-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--theme-primary);
    white-space: nowrap;
}

.tier-option-sidebar.tier-recommended .tier-price {
    color: #059669;
}

.tier-option-sidebar.tier-all-russia .tier-price {
    color: #6b7280;
    font-size: 1.25rem;
}

.tier-meta {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.tier-meta i {
    font-size: 0.875rem;
}

/* Trust Signals - Sidebar variant */
.trust-signals-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.875rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.trust-item-sidebar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
}

.trust-item-sidebar i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Related Links Section */
.related-links-section {
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

.related-links-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

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

.related-links-list li {
    margin-bottom: 0.625rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.related-links-list li:last-child {
    margin-bottom: 0;
}

.related-links-list li i {
    color: var(--theme-primary);
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.related-links-list a {
    font-size: 0.85rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.related-links-list a:hover {
    color: var(--theme-primary);
    text-decoration: underline;
}

/* ==========================================================================
   UNIFIED CONTACT BLOCK - Company info + Masked contacts + Help CTA merged
   ========================================================================== */

.unified-contact-block {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 2px solid var(--theme-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Unified Contact Header */
.unified-contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.unified-contact-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--theme-text-dark);
    margin: 0;
    display: flex;
    align-items: center;
}

.unlock-prompt-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--theme-text-dark);
    background: rgba(37, 99, 235, 0.08);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    flex: 0 0 auto;
    width: calc((100% - 1.5rem) * 1.2 / 3.2);
    min-width: 280px;
    text-align: center;
    justify-content: center;
}

.unlock-prompt-header i {
    color: var(--theme-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.unified-contact-content {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.unified-contact-left {
    flex: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.unified-contact-right {
    flex: 1.2;
    min-width: 280px;
    display: flex;
    align-items: stretch;
}

.unified-contact-right .help-cta-embedded {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* Company Info - Compact rows with icons */
.company-info-compact {
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: background 0.2s ease;
}

.info-row:hover {
    background: rgba(255, 255, 255, 0.8);
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row > i {
    font-size: 1.125rem;
    color: var(--theme-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-row > div {
    flex: 1;
    min-width: 0;
}

.info-label-compact {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.info-value-compact {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.info-value-link {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.info-value-link:hover {
    color: var(--theme-light);
    text-decoration: underline;
}

/* Masked Contacts - Horizontal inline layout */
.masked-contacts-inline {
    background: white;
    border-radius: 8px;
    padding: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    flex-grow: 1;
    align-content: flex-start;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #333;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.contact-item-compact i {
    font-size: 1rem;
    color: var(--theme-primary);
    flex-shrink: 0;
}

/* Unlock Prompt - Compact */
.unlock-prompt-compact {
    background: rgba(37, 99, 235, 0.08);
    border-radius: 6px;
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--theme-text-dark);
}

.unlock-prompt-compact i {
    color: var(--theme-primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Help CTA - Embedded version (not a separate block) */
.help-cta-embedded {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.help-cta-icon-embed {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.help-cta-icon-embed i {
    font-size: 2rem;
    color: #fff;
}

.help-cta-title-embed {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-cta-subtitle-embed {
    display: none;
}

.help-cta-button-embed {
    display: block;
    background: #fff;
    color: #dc2626;
    font-size: 1.35rem;
    font-weight: 800;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    margin: 0 auto 1.25rem;
    max-width: fit-content;
}

.help-cta-button-embed i {
    display: none;
}

.help-cta-button-embed:hover {
    transform: scale(1.08);
    color: #b91c1c;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.help-cta-text-embed {
    color: #fff;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW COMPONENTS
   ========================================================================== */

@media (max-width: 768px) {
    .contact-preview-grid {
        grid-template-columns: 1fr;
    }

    .tier-header {
        flex-wrap: wrap;
    }

    .tier-name {
        font-size: 0.9rem;
    }

    .tier-price {
        font-size: 0.95rem;
    }

    /* Stack contacts and phone CTA on mobile */
    .contacts-phone-row .row {
        margin-bottom: 0;
    }

    .phone-cta-block {
        margin-top: 1rem;
    }

    .phone-cta-title {
        font-size: 1rem;
    }

    .phone-cta-button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    /* Dual Navigation - responsive */
    .nav-card {
        padding: 1.25rem;
    }

    .nav-card-title {
        font-size: 1rem;
    }

    .material-tier-option {
        padding: 0.875rem 1rem;
    }

    .tier-location {
        font-size: 0.9rem;
    }

    .tier-price-badge {
        font-size: 1rem;
    }

    .tier-arrow {
        font-size: 1rem;
        padding: 0.25rem 0;
    }

    .global-stats {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    /* Unified Contact Block - Stack on mobile */
    .unified-contact-content {
        flex-direction: column;
    }

    .unified-contact-right {
        width: 100%;
        min-width: 0;
    }

    .masked-contacts-inline {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sidebar-combined-block {
        padding: 1rem;
    }

    .combined-block-title {
        font-size: 1rem;
    }

    .contact-preview-item {
        padding: 0.75rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    /* Smaller inline contacts on mobile */
    .contact-preview-block,
    .contact-preview-block-full {
        padding: 1rem;
    }

    .contact-block-title {
        font-size: 1rem;
    }

    .contact-preview-item-inline {
        padding: 0.625rem 0.75rem;
    }

    .contact-icon-inline {
        width: 36px;
        height: 36px;
    }

    .contact-icon-inline i {
        font-size: 1rem;
    }

    .contact-value-inline {
        font-size: 0.875rem;
    }

    .phone-cta-block {
        padding: 1.25rem;
    }

    .phone-cta-icon {
        width: 48px;
        height: 48px;
    }

    .phone-cta-icon i {
        font-size: 1.5rem;
    }

    /* Dual Navigation - mobile */
    .nav-card {
        padding: 1rem;
    }

    .nav-card-title {
        font-size: 0.95rem;
    }

    .material-tier-option {
        padding: 0.75rem 0.875rem;
    }

    .tier-location {
        font-size: 0.85rem;
    }

    .tier-count {
        font-size: 0.75rem;
    }

    .tier-price-badge {
        font-size: 0.9rem;
    }

    .tier-arrow {
        font-size: 0.9rem;
        padding: 0.125rem 0;
    }

    .btn-global-calculator {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .nav-card-hint {
        font-size: 0.75rem;
    }

    /* Unified Contact Block - Smaller on tiny screens */
    .unified-contact-block {
        padding: 1rem;
    }

    .unified-contact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .unified-contact-title {
        font-size: 1rem;
    }

    .unlock-prompt-header {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
        width: 100%;
        min-width: 0;
    }

    .info-row {
        padding: 0.375rem;
    }

    .info-label-compact {
        font-size: 0.65rem;
    }

    .info-value-compact {
        font-size: 0.825rem;
    }

    .contact-item-compact {
        font-size: 0.8rem;
    }

    .help-cta-embedded {
        padding: 1.5rem 1.25rem;
    }

    .help-cta-icon-embed {
        width: 50px;
        height: 50px;
    }

    .help-cta-icon-embed i {
        font-size: 1.5rem;
    }

    .help-cta-title-embed {
        font-size: 1.5rem;
    }

    .help-cta-button-embed {
        font-size: 1.15rem;
        padding: 0.875rem 1.5rem;
    }

    .help-cta-text-embed {
        font-size: 1rem;
    }
}
