/* Index Custom Stylesheet - Reference Design (vCardPro) */

:root {
    --primary-blue: #2563eb;
    --primary-light-blue: rgba(37, 99, 235, 0.08);
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-indigo-purple: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

/* Page background wrapper */
.index-page-wrapper {
    background: transparent;
    padding: 0 !important;
}

/* Badge styling */
.hero-badge {
    background: var(--primary-light-blue);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
}

/* Highlighted Text */
.text-highlight {
    color: var(--primary-blue);
}

.index-header {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.index-subheader {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Checklist indicators */
.hero-checks-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-check-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-check-item i {
    color: var(--primary-blue);
}

/* Monochromatic & Rounded buttons */
.index-button {
    padding: 0.85rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.index-button.btn-primary {
    background: var(--primary-blue) !important;
    border: 1px solid var(--primary-blue) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.index-button.btn-primary:hover {
    transform: translateY(-2px);
    background: #1d4ed8 !important;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

.index-button.btn-gray-100 {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
}

.index-button.btn-gray-100:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Smartphone Mockup */
.mockup-container {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    z-index: 2;
}

.phone-frame {
    border: 12px solid #0f172a;
    border-radius: 2.75rem;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.18);
    position: relative;
    aspect-ratio: 9 / 18.5;
}

.phone-screen {
    height: 100%;
    background: white;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}

.phone-screen::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Top curved accent on phone */
.phone-header-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    height: 120px;
    border-radius: 0 0 1.5rem 1.5rem;
    position: relative;
}

.phone-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 4px solid white;
    margin: -39px auto 10px auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.phone-name {
    font-size: 1.15rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.phone-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.phone-bio {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0 1.25rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Contact rows list inside phone */
.phone-contacts {
    padding: 0 1.25rem;
}

.phone-contact-row {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    text-align: left;
}

.phone-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.phone-contact-info {
    line-height: 1.2;
}

.phone-contact-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.phone-contact-val {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dark);
    word-break: break-all;
}

/* Social icons horizontal inside phone */
.phone-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 18px 0;
}

.phone-social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.phone-social-circle:hover {
    background: var(--primary-blue);
    color: white;
}

/* Phone bottom action btn */
.phone-btn-save {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    width: calc(100% - 2.5rem);
    margin: 0 auto 20px auto;
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 13px 18px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.10),
        0 2px 8px rgba(37, 99, 235, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 170px;
}

.floating-badge:hover {
    transform: scale(1.07) translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.13),
        0 4px 12px rgba(37, 99, 235, 0.1);
}

.floating-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Distinct icon gradient per badge */
.float-badge-left .floating-badge-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}

.float-badge-right-top .floating-badge-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.float-badge-right-bottom .floating-badge-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.floating-badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.floating-badge-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-top: 1px;
}

/* Floating Badge Placements & Float Animations */
@keyframes floatY1 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes floatY2 {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

.float-badge-left {
    left: -85px;
    top: 50%;
    transform: translateY(-50%);
    animation: floatY1 5s ease-in-out infinite;
}

.float-badge-left:hover {
    transform: translateY(calc(-50% - 4px)) scale(1.07) !important;
}

.float-badge-right-top {
    right: -85px;
    top: 18%;
    animation: floatY2 6s ease-in-out infinite;
}

.float-badge-right-bottom {
    right: -80px;
    bottom: 22%;
    animation: floatY1 5.5s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .float-badge-left { left: -60px; }
    .float-badge-right-top { right: -60px; }
    .float-badge-right-bottom { right: -55px; }
    .floating-badge { min-width: 150px; padding: 11px 14px; }
}

@media (max-width: 991px) {
    .floating-badge {
        display: none !important;
    }
}

/* Reference Feature Cards Grid */
.ref-feature-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.ref-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px -10px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.15);
}

.ref-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.ref-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.ref-feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Reference Templates Section */
.ref-template-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
    aspect-ratio: 9 / 18;
}

.ref-template-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.ref-template-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ref-template-header {
    height: 65px;
    position: relative;
    border-radius: 0 0 12px 12px;
}

.ref-template-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid white;
    margin: -21px auto 6px auto;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 5;
}

.ref-template-name {
    font-size: 0.65rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.ref-template-title {
    font-size: 0.48rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.ref-template-contact-row {
    background: #f8fafc;
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 10px 4px 10px;
}

.ref-template-contact-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
}

.ref-template-contact-text {
    font-size: 0.45rem;
    color: var(--text-dark);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ref-template-socials {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 8px 0;
}

.ref-template-social-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
}

.ref-template-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 0;
    width: calc(100% - 20px);
    margin: auto auto 10px auto;
    font-size: 0.48rem;
    font-weight: 700;
    text-align: center;
}

/* Bottom Indigo-Purple Banner */
.ref-cta-banner {
    background: var(--gradient-indigo-purple) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 3rem 2.5rem !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.ref-cta-banner::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: -125px;
    right: -50px;
    pointer-events: none;
}

.ref-cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.ref-cta-banner p {
    font-size: 1rem;
    opacity: 0.9;
}

.ref-cta-banner a.btn {
    background: white !important;
    color: #6366f1 !important;
    font-weight: 700;
    border-radius: 50px !important;
    padding: 0.9rem 2.5rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease !important;
    font-size: 0.95rem;
    white-space: nowrap;
}

.ref-cta-banner a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    background: #f8fafc !important;
}

@media (max-width: 575px) {
    .ref-cta-banner {
        text-align: center;
        padding: 2.5rem 1.5rem !important;
    }
    .ref-cta-banner h2 {
        font-size: 1.6rem;
    }
}

/* --- Premium Pricing Page Customizations --- */
.pricing-card {
    background: white !important;
    border-radius: 24px !important;
    border: 1px solid rgba(99, 102, 241, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: visible !important;
    padding: 2rem 1.75rem !important;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15) !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
}

.pricing-card[style*="border-top-color"] {
    border-top-width: 6px !important;
}

.pricing-tag {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    color: white !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 0.45rem 1.35rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
    border: none !important;
    z-index: 10 !important;
}

.pricing-card .font-weight-bold.text-uppercase {
    background: var(--primary-light-blue) !important;
    color: var(--primary-blue) !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.05em !important;
    padding: 0.65rem 1rem !important;
    border-radius: 12px !important;
    display: inline-block !important;
    width: 100% !important;
    border: 1px solid rgba(37, 99, 235, 0.08) !important;
}

/* Price row: number + currency symbol always on one line */
.pricing-price-row {
    display: inline-flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 2px !important;
}

.pricing-currency {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    line-height: 1 !important;
}

.pricing-currency.pricing-currency-code {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
}

.pricing-amount {
    margin: 0 !important;
    line-height: 1 !important;
}

.pricing-card .h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-bottom: 0 !important;
    letter-spacing: -0.03em !important;
    line-height: 1 !important;
}

.pricing-card .h1 span {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
}

.pricing-card .text-muted {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
}

.pricing-card ul, .pricing-card .d-flex.justify-content-between.align-items-center {
    border-bottom: 1px dashed #f1f5f9 !important;
    padding: 0.85rem 0.25rem !important;
    margin: 0 !important;
}

.pricing-card .d-flex.justify-content-between.align-items-center:last-of-type {
    border-bottom: none !important;
}

.pricing-card i.fa-check {
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.1) !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.65rem !important;
}

.pricing-card i.fa-times {
    color: #94a3b8 !important;
    background: rgba(148, 163, 184, 0.1) !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.65rem !important;
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.2) !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    padding: 0.85rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35) !important;
    filter: brightness(110%) !important;
}

/* Custom Period Switcher Styling */
.btn-group-custom {
    background: rgba(241, 245, 249, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.08) !important;
    padding: 6px !important;
    border-radius: 50px !important;
    gap: 4px !important;
}

.btn-group-custom .btn {
    border-radius: 50px !important;
    background: transparent !important;
    border: none !important;
    color: var(--gray-600) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

.btn-group-custom .btn:hover {
    color: var(--primary-blue) !important;
    background: transparent !important;
}

.btn-group-custom .btn.active {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2) !important;
}

/* Index FAQ styling */
.index-faq .card {
    border-radius: 16px !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
    margin-bottom: 1rem !important;
    background: white !important;
    transition: all 0.3s ease;
}

.index-faq .card:hover {
    border-color: rgba(99, 102, 241, 0.15) !important;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.04) !important;
}

.index-faq .card-body {
    padding: 1.25rem 1.5rem !important;
}

.index-faq h3 button {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    transition: color 0.2s ease !important;
}

.index-faq h3 button:hover {
    color: var(--primary-blue) !important;
}

.index-faq .collapse {
    font-size: 0.95rem !important;
}

/* --- Dark Mode Pricing Adaptations --- */
[data-theme-style="dark"] .pricing-card {
    background: rgba(22, 21, 56, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

[data-theme-style="dark"] .pricing-card:hover {
    border-color: rgba(139, 92, 246, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25) !important;
}

[data-theme-style="dark"] .pricing-card .font-weight-bold.text-uppercase {
    background: rgba(99, 102, 241, 0.15) !important;
    color: #a5b4fc !important;
    border-color: rgba(99, 102, 241, 0.2) !important;
}

[data-theme-style="dark"] .pricing-card .h1 {
    color: #ffffff !important;
}

[data-theme-style="dark"] .pricing-card .h1 span {
    color: #94a3b8 !important;
}

[data-theme-style="dark"] .pricing-currency {
    color: #ffffff !important;
}

[data-theme-style="dark"] .pricing-card ul, 
[data-theme-style="dark"] .pricing-card .d-flex.justify-content-between.align-items-center {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08) !important;
}

[data-theme-style="dark"] .btn-group-custom {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

[data-theme-style="dark"] .btn-group-custom .btn {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme-style="dark"] .btn-group-custom .btn:hover {
    color: #a5b4fc !important;
}

[data-theme-style="dark"] .btn-group-custom .btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
}

[data-theme-style="dark"] .index-faq .card {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

[data-theme-style="dark"] .index-faq h3 button {
    color: #f1f5f9 !important;
}

[data-theme-style="dark"] .index-faq h3 button:hover {
    color: #a5b4fc !important;
}

/* Why choose icons styling */
.index-icon-container {
    width: 54px;
    height: 54px;
    background: rgba(99, 102, 241, 0.08) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    color: #4f46e5 !important;
    transition: all 0.3s ease !important;
}

.icon-zoom-animation:hover .index-icon-container {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    color: white !important;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25) !important;
}

.icon-zoom-animation:hover .index-icon-container i {
    color: white !important;
}

[data-theme-style="dark"] .index-icon-container {
    background: rgba(99, 102, 241, 0.15) !important;
    color: #a5b4fc !important;
}

.pricing-title-gradient {
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme-style="dark"] .pricing-title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Discount badge - absolute positioned ribbon, does NOT affect column row alignment */
.pricing-discount-badge {
    position: absolute !important;
    top: -10px !important;
    right: 18px !important;
    left: auto !important;
    transform: none !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 50px !important;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35) !important;
    border: none !important;
    z-index: 20 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}

/* --- Pricing Page Hero Section --- */
.pricing-page-hero {
    padding: 4rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-page-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-page-hero > * {
    position: relative;
    z-index: 1;
}

.pricing-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    color: #4f46e5;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.25rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
    50% { box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.08); }
}

[data-theme-style="dark"] .pricing-hero-badge {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border-color: rgba(99, 102, 241, 0.3);
}

/* --- "Why Choose" Feature Cards --- */
.pricing-why-section {
    margin-top: 4rem !important;
}

.pricing-why-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 2rem 1.75rem;
    height: 100%;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.pricing-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
}

.pricing-why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4f46e5;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.pricing-why-card:hover .pricing-why-icon {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

[data-theme-style="dark"] .pricing-why-card {
    background: rgba(22, 21, 56, 0.5);
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme-style="dark"] .pricing-why-icon {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
}


.directory-header-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.directory-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.directory-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

.search-input-group {
    background: white;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.15);
}

.search-input-group .form-control {
    font-size: 1rem;
    height: auto;
    padding: 0.75rem 1.25rem;
    box-shadow: none !important;
    background: transparent;
}

.search-input-group .btn-primary {
    border-radius: 10px !important;
    font-weight: 700;
    padding: 0 1.5rem;
}

.ref-template-views {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    transition: all 0.2s ease;
}

.ref-template-card:hover .ref-template-views {
    background: rgba(37, 99, 235, 0.85);
}

/* Fix directory filter dropdown styles */
.filters-dropdown {
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    padding: 1rem 0 !important;
}

.filters-button {
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
    font-weight: 600;
}

/* --- iPhone 17 Device Frame Styling --- */
.iphone-17-device {
    position: relative;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 9 / 18.5;
    background: #090d16;
    border-radius: 40px;
    padding: 5px;
    box-shadow: 
        0px 15px 35px rgba(0, 0, 0, 0.12),
        0px 0px 0px 2px #1a1f2c,
        inset 0 0 3px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.iphone-17-device:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0px 25px 50px rgba(37, 99, 235, 0.25),
        0px 0px 0px 2px var(--primary-blue),
        inset 0 0 4px 1px rgba(255, 255, 255, 0.25);
}

/* Block buttons styling inside vCard mockup */
.ref-template-block-btn {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    font-size: 0.52rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
    box-sizing: border-box;
    text-align: left;
}

.ref-template-block-btn i {
    color: var(--primary-blue);
    font-size: 0.58rem;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}


.iphone-17-frame-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: #090d16;
    border: 2px solid #000000;
    box-sizing: border-box;
}

.iphone-17-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.iphone-17-screen::-webkit-scrollbar {
    display: none;
}

.iphone-17-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 18px;
    background: #000000;
    border-radius: 20px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

.iphone-17-camera {
    width: 6px;
    height: 6px;
    background: #0a0f1d;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.6);
}

.iphone-screen-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    box-sizing: border-box;
}

/* Scaled overrides for native vCard elements inside mockup screen */
.iphone-17-screen .card {
    padding: 12px 10px !important;
    margin: 48px auto 15px auto !important;
    width: calc(100% - 16px) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

.iphone-17-screen .new-york-logo {
    width: 60px !important;
    height: 60px !important;
    top: -1.8rem !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.iphone-17-screen .los-angeles-logo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

.iphone-17-screen .chicago-logo {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

.iphone-17-screen .san-francisco-logo {
    width: 50px !important;
    height: 50px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
}

.iphone-17-screen .chicago-button,
.iphone-17-screen .los-angeles-button,
.iphone-17-screen .san-francisco-button,
.iphone-17-screen .btn-gray-100 {
    padding: 5px 8px !important;
    margin: 5px 0 !important;
    font-size: 0.52rem !important;
    border-radius: 6px !important;
}

.iphone-17-screen .chicago-button .icon,
.iphone-17-screen .los-angeles-button .icon,
.iphone-17-screen .san-francisco-button .icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
}

.iphone-17-screen .icon i {
    font-size: 0.58rem !important;
    color: #475569 !important;
}

.iphone-17-screen .chicago-button .d-flex.flex-column.ml-3,
.iphone-17-screen .los-angeles-button .d-flex.flex-column.ml-3,
.iphone-17-screen .san-francisco-button .d-flex.flex-column.ml-3 {
    margin-left: 8px !important;
}

.iphone-17-screen .chicago-button small,
.iphone-17-screen .los-angeles-button small,
.iphone-17-screen .san-francisco-button small {
    font-size: 0.45rem !important;
    line-height: 1.1 !important;
    display: block !important;
}

.iphone-17-screen .chicago-button span,
.iphone-17-screen .los-angeles-button span,
.iphone-17-screen .san-francisco-button span {
    font-size: 0.52rem !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.iphone-17-screen h1.h3, .iphone-17-screen h2.h6 {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.iphone-17-screen p.text-muted {
    font-size: 0.48rem !important;
    line-height: 1.2 !important;
}

/* Premium styling for discount badges next to the price */
.pricing-card .badge-success {
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    padding: 0.35rem 0.65rem !important;
    border-radius: 50px !important;
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    vertical-align: middle !important;
    align-self: center !important;
    margin-left: 8px !important;
    text-transform: lowercase;
}

/* Section Band Styling for Alternating Backgrounds */
.section-band {
    padding: 5.5rem 0;
    position: relative;
    width: 100%;
}
.section-band-hero {
    background: radial-gradient(120% 120% at 50% -20%, #f4f7fe 0%, #ffffff 100%);
    padding-top: 5rem;
    padding-bottom: 5.5rem;
}
.section-band-white {
    background: #ffffff;
}
.section-band-gray {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.section-band-cta {
    background: #ffffff;
    padding: 4rem 0 5.5rem 0;
}

/* Section Header Styling - Bold Headers */
.section-badge {
    background: var(--primary-light-blue);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800 !important; /* Bold headers as requested */
    color: var(--text-dark);
    letter-spacing: -0.025em;
    line-height: 1.25;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0.75rem auto 0 auto;
}




