/* 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;
}

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

.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-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.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);
}

.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);
}

/* Stats Section */
.binarystitch-stats {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.binarystitch-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

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

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

/* 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;
}

/* Services Section */
.binarystitch-services {
    padding: 120px 0;
    background: white;
}

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

.binarystitch-service-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.binarystitch-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.binarystitch-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.binarystitch-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.binarystitch-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.binarystitch-service-icon .material-icons {
    font-size: 48px;
    color: #0ea5e9;
}

.binarystitch-service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    opacity: 0.3;
}

.binarystitch-service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.binarystitch-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.binarystitch-service-feature {
    padding: 8px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.binarystitch-advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.binarystitch-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.binarystitch-advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.binarystitch-advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.binarystitch-advantage-icon .material-icons {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.binarystitch-advantage-item:hover .binarystitch-advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.binarystitch-advantage-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.binarystitch-advantage-content p {
    color: #64748b;
    line-height: 1.6;
}

.binarystitch-advantages-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Project Showcase */
.binarystitch-showcase {
    padding: 120px 0;
    background: white;
}

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

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

.binarystitch-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.binarystitch-showcase-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: all 0.3s ease;
}

.binarystitch-showcase-item:hover .binarystitch-showcase-icon {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    transform: scale(1.1);
}

.binarystitch-showcase-icon .material-icons {
    font-size: 64px;
    color: #0ea5e9;
    transition: all 0.3s ease;
}

.binarystitch-showcase-item:hover .binarystitch-showcase-icon .material-icons {
    color: white;
}

.binarystitch-showcase-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.binarystitch-showcase-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.125rem;
}

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

.binarystitch-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

.binarystitch-cta .binarystitch-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    font-size: 18px;
    padding: 20px 40px;
}

.binarystitch-cta .binarystitch-btn-outline {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.binarystitch-cta .binarystitch-btn-outline:hover {
    background: #0ea5e9;
    color: white;
}

/* 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-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .binarystitch-advantages-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@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-stats-grid {
        grid-template-columns: 1fr;
    }

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

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

    .binarystitch-hero-actions {
        justify-content: center;
    }

    .binarystitch-cta-actions {
        justify-content: center;
    }
}

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

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

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

    .binarystitch-services-grid {
        grid-template-columns: 1fr;
    }

    .binarystitch-showcase-grid {
        grid-template-columns: 1fr;
    }

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

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