
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #d7d7d7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.header-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #666666, #999999);
    margin: 0 auto;
    border-radius: 2px;
}

.section-tag {
    display: inline-block;
background: linear-gradient(90deg, #004f95, #3b7dc2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.section-description {
    font-size: 1.25rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #333333, #555555);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.about-story {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-content {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(51, 51, 51, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-text {
    flex: 1;
}

.section-header.text-left {
    text-align: left;
    margin-bottom: 2rem;
}

.section-header.text-left .section-divider {
    margin-left: 0;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.story-highlight {
    background: linear-gradient(135deg, #f8f9fa, #d7d7d7);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #666666;
    margin: 2rem 0;
    position: relative;
}

.highlight-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #004f95;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.story-highlight p {
    font-style: italic;
    font-size: 1rem;
    margin: 0;
    padding-left: 1rem;
    color: #333333;
}

.features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    background-size: 80px 80px;
    animation: float 25s infinite linear;
}

.features-section .section-header {
    color: white;
    margin-bottom: 4rem;
}

.features-section .section-header h2 {
    color: #ffffff;
}

.features-section .section-description {
    color: #d7d7d7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(215, 215, 215, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #081126;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #2a5cc0;
}

.feature-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: #d7d7d7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #081126, #081126);
    color: lightgrey;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-item p {
    color: #d7d7d7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.mission-values {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #1e40af);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.1), rgba(51, 51, 51, 0.05));
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(51, 51, 51, 0.2);
}

.value-card:hover .value-icon {
    background: 	#121212;
    color: #fff;
    transform: scale(1.1);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.value-card p {
    color: #666666;
    line-height: 1.6;
}

.team-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(51, 51, 51, 0.1);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(51, 51, 51, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 50px;
    height: 50px;
    background: rgba(51, 51, 51, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-social a:hover {
    background: #666666;
    color: #fff;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.member-role {
    color: #666666;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
}

.stats-section {
    padding: 6rem 0;
background: linear-gradient(135deg, #0d1b33 0%, #1a2740 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%23ffffff" opacity="0.03"/></svg>') repeat;
    background-size: 120px 120px;
    animation: float 25s infinite linear;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-block {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.1), rgba(51, 51, 51, 0.05));
    border: 1px solid rgba(51, 51, 51, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.stat-block:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.15), rgba(102, 102, 102, 0.08));
    border-color: #666666;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
}

.stat-suffix {
    display: inline;
    font-size: 2rem;
    color: #d7d7d7;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d7d7d7;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    background-size: 80px 80px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    background: linear-gradient(90deg, #004f95, #3b7dc2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: #272727;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn-primary {
    background: #1f2937;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid #666666;
}

.cta-buttons .btn-primary:hover {
    background: #111827;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 102, 102, 0.2);
}

@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 991px) {
    .page-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-story, .mission-values, .team-section, .premium-features, .features-section {
        padding: 5rem 0;
    }
    
    .values-grid, .features-container, .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .feature-item, .value-card, .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 6rem 0 4rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-story, .mission-values, .team-section, .premium-features, .features-section {
        padding: 4rem 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

.stat-number.counting {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
button:focus,
a:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}
.bsd-primary-navigation {
background: linear-gradient(135deg, #040c1d 0%, #0a1f44 50%, #102a5c 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.bsd-brand-section {
    flex-shrink: 0;
}

.bsd-logo-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.bsd-logo-white {
    color: #ffffff;
}

.bsd-logo-blue {
    color: #60a5fa;
}

.bsd-desktop-menu {
    display: flex;
    align-items: center;
}

.bsd-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.bsd-nav-item {
    position: relative;
}

.bsd-nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.bsd-nav-link:hover {
    color: #ffffff;
}

.bsd-nav-active {
    color: #ffffff;
}

.bsd-nav-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #60a5fa;
    border-radius: 50%;
}

.bsd-login-button {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 24px;
    border: 2px solid #60a5fa;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: transparent;
}

.bsd-login-button:hover {
    background: #60a5fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.bsd-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.bsd-hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.bsd-hamburger-btn.bsd-active .bsd-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.bsd-hamburger-btn.bsd-active .bsd-hamburger-line:nth-child(2) {
    opacity: 0;
}

.bsd-hamburger-btn.bsd-active .bsd-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.bsd-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
background: linear-gradient(135deg, #0a0f1c 0%, #0f1d3b 50%, #122a5f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.bsd-mobile-menu.bsd-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bsd-mobile-menu-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bsd-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.bsd-mobile-nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 16px;
}

.bsd-mobile-nav-link:hover {
    color: #ffffff;
    border-left-color: #60a5fa;
}

.bsd-mobile-active {
    color: #ffffff;
    border-left-color: #60a5fa;
}

.bsd-mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.bsd-mobile-login-section {
    text-align: center;
}

.bsd-mobile-login-btn {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border: 2px solid #60a5fa;
    border-radius: 25px;
    background: transparent;
    transition: all 0.3s ease;
    min-width: 120px;
}

.bsd-mobile-login-btn:hover {
    background: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
}

@media (max-width: 768px) {
    .bsd-nav-container {
        padding: 0 16px;
        height: 60px;
    }
    
    .bsd-logo-text {
        font-size: 20px;
    }
    
    .bsd-desktop-menu {
        display: none;
    }
    
    .bsd-hamburger-btn {
        display: flex;
    }
    
    .bsd-mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .bsd-nav-container {
        padding: 0 12px;
    }
    
    .bsd-logo-text {
        font-size: 18px;
    }
    
    .bsd-mobile-menu-content {
        padding: 16px;
    }
    
    .bsd-mobile-nav-link {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .bsd-mobile-login-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .bsd-logo-text {
        font-size: 16px;
    }
    
    .bsd-hamburger-btn {
        width: 36px;
        height: 36px;
    }
    
    .bsd-hamburger-line {
        width: 20px;
    }
}