/* B2B Landing Page Specific Styles */
:root {
    --b2b-primary: #1e293b;
    --b2b-accent: #eab308;
    --b2b-accent-hover: #ca8a04;
    --b2b-gray-light: #f8fafc;
}

/* Base Overrides for cleaner look */
body {
    background-color: var(--b2b-gray-light);
}

.text-accent {
    color: var(--b2b-accent);
}

.btn-accent {
    background: var(--b2b-accent);
    color: var(--b2b-primary);
    border: none;
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--b2b-accent-hover);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--b2b-primary);
}

/* Header */
.b2b-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.b2b-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.b2b-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgency-text {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-b2b {
    position: relative;
    background: url('../images/shooting/photo/01032026-DSC00046.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-b2b-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
}

.hero-b2b-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-b2b h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.trust-badge-b2b {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #e2e8f0;
}

/* Promises */
.b2b-promises {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 200px;
}

.promise-icon {
    font-size: 2rem;
}

.promise-sub {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Features */
.b2b-features {
    gap: 30px;
}

.card-b2b {
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

.card-b2b:hover {
    transform: translateY(-5px);
}

.icon-box-b2b {
    color: var(--b2b-accent);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Pricing */
.b2b-pricing {
    background: url('../images/shooting/Intervention client/01032026-DSC00043.jpg') center/cover no-repeat;
    position: relative;
    color: white;
}

.b2b-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.85);
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 50px;
    max-width: 600px;
    z-index: 1;
}

.pricing-subtitle {
    opacity: 0.8;
    margin-bottom: 30px;
}

.pricing-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.price-base,
.price-room {
    display: flex;
    flex-direction: column;
}

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

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

.price-plus {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-includes {
    font-size: 0.95rem;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Form Section */
.lead-magnet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #1e293b;
    border-radius: 12px;
    padding: 50px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lead-magnet-text h2 {
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--b2b-accent);
    font-weight: bold;
}

.lead-magnet-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    color: var(--text-color);
}

.lead-magnet-form-wrapper h3 {
    margin-bottom: 25px;
    color: var(--b2b-primary);
    font-size: 1.3rem;
}

.b2b-form .form-group {
    margin-bottom: 15px;
}

.b2b-form input[type="text"],
.b2b-form input[type="email"],
.b2b-form input[type="tel"],
.b2b-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s ease;
}

.b2b-form input:focus,
.b2b-form textarea:focus {
    outline: none;
    border-color: var(--b2b-accent);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #475569;
}

.form-checkbox input {
    margin-top: 4px;
}

.b2b-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Media Queries */
@media (max-width: 900px) {
    .lead-magnet-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .lead-magnet-form-wrapper {
        padding: 25px 20px;
    }

    .hero-b2b h1 {
        font-size: 2.5rem;
    }

    .b2b-promises {
        flex-direction: column;
    }

    .pricing-details {
        flex-direction: column;
        gap: 10px;
    }

    .price-plus {
        display: none;
    }
}

@media (max-width: 600px) {
    .b2b-contact .urgency-text {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
    }
}