/* ==================================================
   Business Hub Layout
================================================== */

.business-hub {
    background: #f8fafc;
    min-height: 100vh;
    padding: 60px 20px;
}

.hub-container {
    max-width: 1200px;
    margin: 0 auto;
}

.business-hub section {
    margin-bottom: 80px;
}

.hub-section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.hub-section-heading h2 {
    margin-bottom: 12px;
}

.hub-section-heading p {
    max-width: 700px;
    margin: 0 auto;
}

/* ==================================================
   Cards
================================================== */

.hub-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.hub-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    transition: all .25s ease;

    display: flex;
    flex-direction: column;
}

.hub-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.hub-card h3 {
    margin-bottom: 18px;
    line-height: 1.15;
}

.hub-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hub-card li {
    margin-bottom: 14px;
}

.hub-price {
    font-size: 2.75rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
    line-height: 1;
}

.hub-price-subtitle {
    color: #6b7280;
    margin: 10px 0 30px;
    font-size: 0.95rem;
}

.hub-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 15px 0 30px;
}

.hub-card-featured {
    border: 2px solid #2563eb;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* ==================================================
   Buttons
================================================== */

.hub-button {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.hub-button:hover {
    background: #1d4ed8;
    color: #fff;
}

.hub-card .hub-button {
    margin-top: auto;
}

/* ==================================================
   Hero
================================================== */

.hub-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 70px 60px 180px;
    text-align: center;
    overflow-x: hidden;
    overflow-y: visible;


}

.hub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(255,255,255,.12),
        transparent 45%);
    pointer-events: none;
}

.hub-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hub-hero h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hub-intro {
    color: rgba(255,255,255,.9);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================================================
   Search
================================================== */

.hub-search-section {
    margin-top: 40px;
}

.hub-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hub-search-input {
    flex: 1;
    min-width: 320px;
    padding: 18px 24px;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    transition: all .25s ease;
}

.hub-search-input:focus {
    outline: none;
    box-shadow: 0 20px 50px rgba(37,99,235,.25);
}

.hub-search-input::placeholder {
    color: #9ca3af;
}

.hub-search-form .hub-button,
.hub-search-form button {
    padding: 18px 34px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.hub-search-help {
    margin-top: 20px;
    text-align: center;
    color: rgba(255,255,255,.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================================================
   Request Listing
================================================== */

.hub-request-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 40px;
	align-items: start;
}

.hub-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.hub-feature-list li {
    margin-bottom: 16px;
    line-height: 1.5;
}

@media (max-width: 900px) {

	.hub-request-grid {
		grid-template-columns: 1fr;
	}

}

