/* business.css - Inquisitive Ltd Service Styling */

/* --- 1. PAGE LAYOUT --- */
.services-page {
    padding-top: 120px; /* Space for fixed nav */
    min-height: 100vh;
}

.services-hero {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin: 10px 0;
    letter-spacing: -1px;
}

.services-hero p {
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- 2. THE PRICING CARD (SHARED) --- */
.services-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px 100px;
}

.pricing-card {
    background: #ffffff;
    color: #000000;
    width: 100%;
    max-width: 450px;
    padding: 60px 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
}

/* Floating Badge */
.card-highlight {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 2;
}

/* --- 3. HOMEPAGE PREVIEW CARD (OPTIMIZED) --- */
.business-preview-card {
    max-width: 800px !important;
    margin: 0 auto;
    padding: 50px 40px 40px !important;
    min-height: auto !important;
}

.preview-content-wrapper {
    display: flex;
    align-items: flex-end; /* Aligns button to baseline of text */
    justify-content: space-between;
    gap: 40px;
}

.preview-text {
    flex: 1;
}

.preview-text h3 {
    margin: 0 0 10px 0;
    text-align: left;
    font-size: 1.6rem;
    color: #000;
}

.mini-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.mini-features li {
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.mini-features span {
    color: #000;
    margin-right: 6px;
    font-weight: 900;
}

/* --- 4. BUTTONS & STRIPE INTEGRATION --- */
.stripe-integration {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px; /* Space between Buy and Enquire buttons */
}

.btn-outline {
    background: transparent !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-2px);
}

.preview-action {
    flex-shrink: 0;
}

/* --- 5. PRICING DETAILS --- */
.price-block {
    text-align: center;
    margin-bottom: 10px;
}

.price-block .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
}

.price-block .amount {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.price-block .details {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-top: -8px;
}

.maintenance-tag {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 20px 0 30px;
    padding: 10px;
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
    color: #333;
}

/* --- 6. FEATURE LIST (FULL PAGE) --- */
.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    margin-right: 15px;
    font-weight: 900;
    color: #000;
}

/* --- 7. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .business-preview-card {
        padding: 45px 25px 30px !important;
    }

    .preview-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        align-items: center;
    }

    .preview-text h3 {
        text-align: center;
    }

    .mini-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .stripe-integration,
    .preview-action {
        width: 100%;
    }

    .btn-outline,
    .preview-action .btn {
        width: 100%; /* Full width on mobile for tap-ability */
    }

    .price-block .amount {
        font-size: 3.5rem;
    }
}

/* Add this at the top of business.css */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');


.card-highlight {
    font-family: 'Space Mono', monospace; /* The typewriter font */
    letter-spacing: 3px;
    font-weight: 700;

}


.services-hero .category-label,
.pricing-card h3,
.business-preview-card h3 {
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}


.category-label {
    display: inline-block;
    border-right: 2px solid #000;
    padding-right: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: black }
}