/* Nordic Software - Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.nordic-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    filter: invert(1);
}

.nordic-logo-img-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    filter: invert(1);
}

.nordic-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e8e8e8;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(74, 155, 79, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%) scale(8);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.bridge-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 208, 60, 0.1);
    border: 1px solid rgba(46, 208, 60, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2ed03c;
    margin-bottom: 30px;
    font-weight: 600;
}

.bridge-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #2ed03c, #4af551);
    border-radius: 50%;
}

/* Capabilities Section */
.capabilities {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.capability-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 155, 79, 0.3);
    background: linear-gradient(135deg, rgba(74, 155, 79, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.capability-card.bridge-highlight {
    border-color: rgba(46, 208, 60, 0.3);
}

.capability-card.bridge-highlight:hover {
    border-color: rgba(46, 208, 60, 0.5);
    background: linear-gradient(135deg, rgba(46, 208, 60, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.capability-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.capability-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.capability-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.capability-description {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(74, 155, 79, 0.3);
    transition: all 0.3s ease;
}

.team-photo:hover {
    border-color: rgba(74, 155, 79, 0.6);
    transform: scale(1.05);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.95rem;
    color: #4a9b4f;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-email {
    font-size: 0.9rem;
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.team-email:hover {
    color: #4a9b4f;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: rgba(74, 155, 79, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a9b4f;
    margin-bottom: 8px;
}

.stat-label {
    color: #a0a0a0;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0a0a0a;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}