/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    overflow-x: hidden;
    background: #ffffff;
}

.binarystitch-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation Styles */
.binarystitch-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.binarystitch-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.binarystitch-logo:hover {
    transform: translateY(-1px);
}

.binarystitch-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.binarystitch-nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.binarystitch-nav-link:hover,
.binarystitch-nav-link.active {
    color: #0ea5e9;
}

.binarystitch-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transition: width 0.3s ease;
}

.binarystitch-nav-link:hover::after,
.binarystitch-nav-link.active::after {
    width: 100%;
}

.binarystitch-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.binarystitch-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #475569;
    transition: all 0.3s ease;
}

/* Breadcrumb Navigation */
.binarystitch-breadcrumb {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 80px;
}

.binarystitch-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.binarystitch-breadcrumb-nav a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.binarystitch-breadcrumb-nav a:hover {
    color: #0891b2;
}

.binarystitch-breadcrumb-separator {
    color: #94a3b8;
}

.binarystitch-breadcrumb-current {
    color: #64748b;
    font-weight: 500;
}

/* Hero Section */
.binarystitch-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    overflow: hidden;
    padding-top: 40px;
}

.binarystitch-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.binarystitch-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.binarystitch-hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.binarystitch-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.binarystitch-hero-text {
    max-width: 600px;
}

.binarystitch-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #0f172a;
}

.binarystitch-hero-line {
    display: block;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.binarystitch-hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.binarystitch-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.binarystitch-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

/* Section Headers */
.binarystitch-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.binarystitch-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.binarystitch-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.binarystitch-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Overview */
.binarystitch-team-overview {
    padding: 120px 0;
    background: white;
}

.binarystitch-team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.binarystitch-team-stat {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.binarystitch-team-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.binarystitch-team-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 12px;
    line-height: 1;
}

.binarystitch-team-stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Management Team */
.binarystitch-management {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.binarystitch-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.binarystitch-management-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.binarystitch-management-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.binarystitch-management-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.binarystitch-management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.binarystitch-management-card:hover .binarystitch-management-photo img {
    transform: scale(1.05);
}

.binarystitch-management-info {
    padding: 32px;
}

.binarystitch-management-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.binarystitch-management-role {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.binarystitch-management-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.binarystitch-management-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.binarystitch-expertise-tag {
    padding: 6px 12px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Technical Experts */
.binarystitch-experts {
    padding: 120px 0;
    background: white;
}

.binarystitch-experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.binarystitch-expert-category {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.binarystitch-expert-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.binarystitch-expert-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.binarystitch-expert-category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.binarystitch-expert-category-icon .material-icons {
    font-size: 32px;
    color: white;
}

.binarystitch-expert-category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.binarystitch-expert-count {
    color: #0ea5e9;
    font-size: 0.875rem;
    font-weight: 600;
}

.binarystitch-expert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.binarystitch-skill-tag {
    padding: 6px 12px;
    background: white;
    color: #475569;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Team Culture */
.binarystitch-team-culture {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.binarystitch-culture-feature {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.binarystitch-culture-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.binarystitch-culture-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.binarystitch-culture-feature-icon .material-icons {
    font-size: 40px;
    color: white;
}

.binarystitch-culture-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.binarystitch-culture-feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Join Our Team CTA */
.binarystitch-join-team {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.binarystitch-join-team-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.binarystitch-join-team-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.binarystitch-join-team-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.binarystitch-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.binarystitch-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
}

.binarystitch-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
}

.binarystitch-btn-outline {
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
    position: relative;
}

.binarystitch-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0ea5e9;
    transition: width 0.3s ease;
    z-index: -1;
}

.binarystitch-btn-outline:hover::before {
    width: 100%;
}

.binarystitch-btn-outline:hover {
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.binarystitch-footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
}

.binarystitch-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.binarystitch-footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.binarystitch-footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.binarystitch-footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

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

.binarystitch-footer-links li {
    margin-bottom: 12px;
}

.binarystitch-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.binarystitch-footer-links a:hover {
    color: #0ea5e9;
}

.binarystitch-footer-contact p {
    color: #cbd5e1;
    margin-bottom: 8px;
    line-height: 1.6;
}

.binarystitch-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 40px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .binarystitch-container {
        padding: 0 30px;
    }

    .binarystitch-hero-title {
        font-size: 3rem;
    }

    .binarystitch-section-title {
        font-size: 2.5rem;
    }

    .binarystitch-team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .binarystitch-experts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

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

@media (max-width: 768px) {
    .binarystitch-nav-menu {
        display: none;
    }

    .binarystitch-nav-toggle {
        display: flex;
    }

    .binarystitch-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .binarystitch-hero-title {
        font-size: 2.5rem;
    }

    .binarystitch-team-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .binarystitch-management-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .binarystitch-experts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .binarystitch-culture-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .binarystitch-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .binarystitch-container {
        padding: 0 20px;
    }

    .binarystitch-join-team-content h2 {
        font-size: 2rem;
    }

    .binarystitch-join-team-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .binarystitch-hero-title {
        font-size: 2rem;
    }

    .binarystitch-section-title {
        font-size: 2rem;
    }

    .binarystitch-join-team-content h2 {
        font-size: 1.75rem;
    }

    .binarystitch-management-info {
        padding: 24px;
    }

    .binarystitch-expert-category {
        padding: 24px;
    }

    .binarystitch-culture-feature {
        padding: 30px 20px;
    }

    .binarystitch-breadcrumb-nav {
        font-size: 0.75rem;
        gap: 8px;
    }
}