:root {
    --bcpro-primary: #1a5490;
    --bcpro-secondary: #2c7dc1;
    --bcpro-accent: #ff6b35;
    --bcpro-dark: #1a1a1a;
    --bcpro-light: #f8f9fa;
    --bcpro-gray: #6c757d;
    --bcpro-success: #28a745;
    --bcpro-white: #ffffff;
    --bcpro-border: #dee2e6;
    --bcpro-shadow: rgba(0, 0, 0, 0.1);
    --bcpro-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--bcpro-dark);
    background-color: var(--bcpro-white);
}

.bcpro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bcpro-header {
    background: var(--bcpro-white);
    box-shadow: 0 2px 10px var(--bcpro-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bcpro-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bcpro-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bcpro-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.bcpro-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--bcpro-primary);
}

.bcpro-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.bcpro-nav-link {
    text-decoration: none;
    color: var(--bcpro-dark);
    font-weight: 500;
    transition: var(--bcpro-transition);
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bcpro-nav-link:hover,
.bcpro-nav-link.bcpro-active {
    color: var(--bcpro-primary);
    background: var(--bcpro-light);
}

.bcpro-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--bcpro-primary);
}

.bcpro-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--bcpro-primary) 0%, var(--bcpro-secondary) 100%);
    color: var(--bcpro-white);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.bcpro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.bcpro-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bcpro-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bcpro-hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.bcpro-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.bcpro-btn-primary,
.bcpro-btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--bcpro-transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.bcpro-btn-primary {
    background: var(--bcpro-accent);
    color: var(--bcpro-white);
}

.bcpro-btn-primary:hover {
    background: #ff5522;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.bcpro-btn-secondary {
    background: transparent;
    color: var(--bcpro-white);
    border: 2px solid var(--bcpro-white);
}

.bcpro-btn-secondary:hover {
    background: var(--bcpro-white);
    color: var(--bcpro-primary);
}

.bcpro-btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.bcpro-btn-full {
    width: 100%;
}

.bcpro-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--bcpro-dark);
}

.bcpro-features-section,
.bcpro-services-section,
.bcpro-process-section,
.bcpro-testimonials-section,
.bcpro-faq-section {
    padding: 80px 20px;
}

.bcpro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bcpro-feature-card {
    background: var(--bcpro-white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: var(--bcpro-transition);
    border: 2px solid var(--bcpro-border);
}

.bcpro-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--bcpro-shadow);
    border-color: var(--bcpro-primary);
}

.bcpro-feature-icon {
    font-size: 48px;
    color: var(--bcpro-primary);
    margin-bottom: 20px;
}

.bcpro-feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--bcpro-dark);
}

.bcpro-feature-card p {
    color: var(--bcpro-gray);
    line-height: 1.7;
}

.bcpro-services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.bcpro-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bcpro-service-reverse {
    direction: rtl;
}

.bcpro-service-reverse > * {
    direction: ltr;
}

.bcpro-service-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--bcpro-shadow);
}

.bcpro-service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--bcpro-primary);
}

.bcpro-service-content p {
    color: var(--bcpro-gray);
    margin-bottom: 20px;
}

.bcpro-service-list {
    list-style: none;
}

.bcpro-service-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bcpro-service-list i {
    color: var(--bcpro-success);
}

.bcpro-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.bcpro-process-step {
    text-align: center;
    padding: 30px;
}

.bcpro-process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bcpro-primary);
    color: var(--bcpro-white);
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bcpro-process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.bcpro-cta-section {
    background: linear-gradient(135deg, var(--bcpro-primary) 0%, var(--bcpro-secondary) 100%);
    color: var(--bcpro-white);
    padding: 80px 20px;
    text-align: center;
}

.bcpro-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.bcpro-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.bcpro-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bcpro-testimonial-card {
    background: var(--bcpro-light);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--bcpro-primary);
}

.bcpro-testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.bcpro-testimonial-text {
    font-style: italic;
    color: var(--bcpro-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.bcpro-testimonial-author strong {
    display: block;
    color: var(--bcpro-dark);
    margin-bottom: 5px;
}

.bcpro-testimonial-author span {
    color: var(--bcpro-gray);
    font-size: 14px;
}

.bcpro-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.bcpro-faq-item {
    background: var(--bcpro-white);
    border: 1px solid var(--bcpro-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.bcpro-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--bcpro-transition);
}

.bcpro-faq-question:hover {
    background: var(--bcpro-light);
}

.bcpro-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.bcpro-faq-item.active .bcpro-faq-answer {
    padding: 20px;
    max-height: 500px;
}

.bcpro-faq-item.active .bcpro-faq-question i {
    transform: rotate(180deg);
}

.bcpro-admin-demo-section {
    background: var(--bcpro-light);
    padding: 80px 20px;
}

.bcpro-demo-subtitle {
    text-align: center;
    color: var(--bcpro-gray);
    margin-bottom: 40px;
    font-size: 18px;
}

.bcpro-admin-frame {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--bcpro-shadow);
}

.bcpro-iframe-demo {
    width: 100%;
    height: 600px;
    border: none;
}

.bcpro-footer {
    background: var(--bcpro-dark);
    color: var(--bcpro-white);
    padding: 60px 20px 20px;
}

.bcpro-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.bcpro-footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bcpro-white);
}

.bcpro-footer-contact p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.bcpro-footer-links {
    list-style: none;
}

.bcpro-footer-links li {
    margin-bottom: 10px;
}

.bcpro-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--bcpro-transition);
}

.bcpro-footer-links a:hover {
    color: var(--bcpro-accent);
}

.bcpro-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

.bcpro-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bcpro-white);
    box-shadow: 0 -4px 20px var(--bcpro-shadow);
    padding: 25px 20px;
    z-index: 9999;
    display: none;
}

.bcpro-cookie-banner.show {
    display: block;
}

.bcpro-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.bcpro-cookie-text h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bcpro-cookie-link {
    color: var(--bcpro-primary);
    text-decoration: underline;
}

.bcpro-cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.bcpro-cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--bcpro-transition);
}

.bcpro-cookie-accept {
    background: var(--bcpro-success);
    color: var(--bcpro-white);
}

.bcpro-cookie-customize {
    background: var(--bcpro-primary);
    color: var(--bcpro-white);
}

.bcpro-cookie-decline {
    background: var(--bcpro-gray);
    color: var(--bcpro-white);
}

.bcpro-page-header {
    background: linear-gradient(135deg, var(--bcpro-primary) 0%, var(--bcpro-secondary) 100%);
    color: var(--bcpro-white);
    padding: 80px 20px;
    text-align: center;
}

.bcpro-page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.bcpro-blog-section {
    padding: 80px 20px;
}

.bcpro-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.bcpro-blog-card {
    background: var(--bcpro-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--bcpro-shadow);
    transition: var(--bcpro-transition);
}

.bcpro-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--bcpro-shadow);
}

.bcpro-blog-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.bcpro-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--bcpro-transition);
}

.bcpro-blog-card:hover .bcpro-blog-image img {
    transform: scale(1.1);
}

.bcpro-blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bcpro-accent);
    color: var(--bcpro-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bcpro-blog-content {
    padding: 25px;
}

.bcpro-blog-meta {
    display: flex;
    gap: 20px;
    color: var(--bcpro-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.bcpro-blog-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--bcpro-dark);
}

.bcpro-blog-content p {
    color: var(--bcpro-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.bcpro-blog-link {
    color: var(--bcpro-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--bcpro-transition);
}

.bcpro-blog-link:hover {
    color: var(--bcpro-accent);
}

.bcpro-newsletter-section {
    background: var(--bcpro-light);
    padding: 80px 20px;
}

.bcpro-newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bcpro-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--bcpro-shadow);
}

.bcpro-newsletter-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.bcpro-newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.bcpro-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--bcpro-border);
    border-radius: 8px;
    font-size: 16px;
}

.bcpro-about-intro {
    padding: 80px 20px;
}

.bcpro-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.bcpro-about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--bcpro-primary);
}

.bcpro-about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--bcpro-gray);
    margin-bottom: 20px;
}

.bcpro-about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bcpro-stat-item {
    text-align: center;
    padding: 25px;
    background: var(--bcpro-light);
    border-radius: 10px;
}

.bcpro-stat-item h3 {
    font-size: 42px;
    color: var(--bcpro-primary);
    margin-bottom: 10px;
}

.bcpro-team-section {
    padding: 80px 20px;
    background: var(--bcpro-light);
}

.bcpro-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.bcpro-team-card {
    background: var(--bcpro-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--bcpro-shadow);
    transition: var(--bcpro-transition);
}

.bcpro-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--bcpro-shadow);
}

.bcpro-team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.bcpro-team-card h3 {
    padding: 20px 20px 0;
    font-size: 22px;
    color: var(--bcpro-dark);
}

.bcpro-team-role {
    padding: 0 20px;
    color: var(--bcpro-primary);
    font-weight: 600;
    margin: 8px 0;
}

.bcpro-team-bio {
    padding: 0 20px;
    color: var(--bcpro-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bcpro-team-expertise {
    padding: 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bcpro-team-expertise span {
    background: var(--bcpro-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--bcpro-gray);
}

.bcpro-values-section {
    padding: 80px 20px;
}

.bcpro-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bcpro-value-card {
    text-align: center;
    padding: 35px;
}

.bcpro-value-card i {
    font-size: 48px;
    color: var(--bcpro-primary);
    margin-bottom: 20px;
}

.bcpro-value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.bcpro-contact-section {
    padding: 80px 20px;
}

.bcpro-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.bcpro-contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--bcpro-primary);
}

.bcpro-contact-item {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.bcpro-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bcpro-primary);
    color: var(--bcpro-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bcpro-contact-text h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.bcpro-contact-text a {
    color: var(--bcpro-primary);
    text-decoration: none;
}

.bcpro-contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--bcpro-primary);
}

.bcpro-form-group {
    margin-bottom: 25px;
}

.bcpro-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--bcpro-dark);
}

.bcpro-form-group input,
.bcpro-form-group select,
.bcpro-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bcpro-border);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--bcpro-transition);
}

.bcpro-form-group input:focus,
.bcpro-form-group select:focus,
.bcpro-form-group textarea:focus {
    outline: none;
    border-color: var(--bcpro-primary);
}

.bcpro-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.bcpro-checkbox-group input {
    width: auto;
}

.bcpro-map-section {
    padding: 80px 20px;
    background: var(--bcpro-light);
}

.bcpro-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--bcpro-shadow);
}

.bcpro-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.bcpro-success-modal.show {
    display: flex;
}

.bcpro-modal-content {
    background: var(--bcpro-white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
}

.bcpro-modal-icon {
    font-size: 72px;
    color: var(--bcpro-success);
    margin-bottom: 20px;
}

.bcpro-modal-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.bcpro-post-container {
    padding-bottom: 60px;
}

.bcpro-post-header {
    background: var(--bcpro-light);
    padding: 40px 20px;
}

.bcpro-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.bcpro-breadcrumb a {
    color: var(--bcpro-primary);
    text-decoration: none;
}

.bcpro-post-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.bcpro-post-meta {
    display: flex;
    gap: 25px;
    color: var(--bcpro-gray);
}

.bcpro-post-featured-image {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.bcpro-post-featured-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--bcpro-shadow);
}

.bcpro-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.bcpro-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--bcpro-gray);
    margin-bottom: 30px;
}

.bcpro-post-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--bcpro-primary);
}

.bcpro-post-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--bcpro-dark);
}

.bcpro-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--bcpro-gray);
}

.bcpro-post-cta {
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 40px;
    background: var(--bcpro-light);
    border-radius: 12px;
    text-align: center;
}

.bcpro-post-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.bcpro-post-navigation {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.bcpro-back-to-blog {
    color: var(--bcpro-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .bcpro-nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bcpro-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px var(--bcpro-shadow);
    }

    .bcpro-nav-menu.active {
        display: flex;
    }

    .bcpro-mobile-toggle {
        display: block;
    }

    .bcpro-hero-title {
        font-size: 32px;
    }

    .bcpro-hero-subtitle {
        font-size: 16px;
    }

    .bcpro-hero-buttons {
        flex-direction: column;
    }

    .bcpro-service-item,
    .bcpro-service-reverse {
        grid-template-columns: 1fr;
    }

    .bcpro-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .bcpro-cookie-content {
        flex-direction: column;
    }

    .bcpro-cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .bcpro-cookie-btn {
        width: 100%;
    }

    .bcpro-blog-grid {
        grid-template-columns: 1fr;
    }

    .bcpro-newsletter-form {
        flex-direction: column;
    }
}