body {
    font-family: 'Inter', sans-serif;
    background-color: #fbfbf9;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #fbfbf9;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.navbar-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.bp-hero {
    padding: 200px 0 200px;
    background: linear-gradient(120deg, #feffe0 0%, #fff0f4 40%, #ffeaea 100%);
    position: relative;
    overflow: hidden;
}

.bp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.bp-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.bp-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 12px;
}

.bp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bp-hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bp-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bp-hero-button {
    background: #000 !important;
    color: #fff !important;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
    border: none;
}


.bp-hero-button:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-2px) scale(1.03);
}

.bp-hero-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .bp-hero {
        padding: 150px 0 150px;
    }
    .bp-hero-title {
        font-size: 2.5rem;
    }
    .bp-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .bp-hero {
        padding: 100px 0 100px;
    }
    .bp-hero-title {
        font-size: 1.7rem;
    }
    .bp-hero-subtitle {
        font-size: 1rem;
    }
    .bp-hero-button {
        padding: 14px 28px;
    }
}

.bp-benefits {
    background: #fff;
    padding: 3.5rem 0 2.5rem 0;
}
.bp-benefits-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.bp-benefit-card {
    background: linear-gradient(120deg, #f6f7fb 0%, #f9fafc 100%);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 340px;
    margin: 0.5rem 0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.bp-benefit-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px) scale(1.03);
}
.bp-benefit-icon {
    font-size: 2.3rem;
    margin-bottom: 1.1rem;
}
.bp-benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}
.bp-benefit-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.bp-contact {
    background: linear-gradient(120deg, #f8fafc 0%, #e8eaf6 100%);
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.bp-contact-container {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
}
.bp-contact-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}
.bp-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.bp-form-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.bp-form-row input,
.bp-form-row textarea {
    flex: 1 1 100%;
    font-size: 1.08rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #f8fafc;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
}
.bp-form-row input:focus,
.bp-form-row textarea:focus {
    border: 1.5px solid #b3b3b3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.bp-form-btn {
    background: #000;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: background 0.2s, transform 0.2s;
}
.bp-form-btn:hover {
    background: #222;
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 900px) {
    .bp-benefits-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .bp-benefit-card {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .bp-hero-title {
        font-size: 2.1rem;
    }
    .bp-hero-content {
        padding: 0 0.5rem;
    }
    .bp-benefits {
        padding: 2rem 0 1.5rem 0;
    }
    .bp-contact {
        padding: 2rem 0 1.5rem 0;
    }
    .bp-contact-container {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    .bp-form-row {
        flex-direction: column;
        gap: 0.7rem;
    }
}

.bp-framework {
    padding: calc(var(--spacing-lg) * 3) 0;
    background-color: var(--primary-bg);
}

.bp-framework .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.bp-framework-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.bp-framework-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bp-framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.2rem;
    margin-top: var(--spacing-lg);
    width: 100%;
}

.bp-framework-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: unset;
}

.bp-framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.bp-framework-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bp-framework-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.bp-framework-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .bp-framework-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .bp-framework-grid {
        gap: 1.1rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .bp-framework-title {
        font-size: 2.2rem;
    }
    .bp-framework-subtitle {
        font-size: 1.1rem;
    }
    .bp-framework-card {
        padding: 2rem 1.2rem;
    }
} 