:root {
    --primary: #03045e;
    --primary-dark: #0077B6;
    --primary-light: #48CAE4;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --light: #CAF0F8;
    --white: #ffffff;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #03045e 0%, #0077b6 100%);
    --shadow: 0 10px 40px rgba(0, 168, 232, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 168, 232, 0.25);
}

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

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

.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.95) 0%, rgba(0, 119, 182, 0.90) 100%),
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920') center/cover fixed;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.03) 60px, rgba(255, 255, 255, 0.03) 120px);
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
    padding: 4px 8px;
    border-radius: 6px;
}

.breadcrumb a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-title {
    font-size: clamp(32px, 6vw, 54px);
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out 0.4s both;
    opacity: 0;
}

.intro-section {
    padding: 70px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    color: var(--primary);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.intro-content h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.intro-content p {
    font-size: clamp(15px, 3vw, 18px);
    color: var(--gray);
    line-height: 1.8;
}

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

.team-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: start;
}

.team-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-visual {
    background: var(--gradient);
    border-radius: 24px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(3, 4, 94, 0.2);
}

.team-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(0, 119, 182, 0.2), transparent 60%);
}

.icon-box {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-visual:hover .icon-box {
    transform: scale(1.08) rotate(360deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.icon-box i {
    font-size: clamp(90px, 12vw, 120px);
    color: white;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    transition: transform 0.6s;
}

.team-visual:hover .icon-box i {
    transform: scale(1.1);
}

.team-stats {
    display: grid;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 40px rgba(3, 4, 94, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.stat-card:hover .stat-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.stat-number {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: clamp(13px, 2.5vw, 14px);
    color: var(--gray);
    font-weight: 600;
}

.team-content {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.team-content:hover {
    border-color: var(--primary-light);
}

.content-header {
    margin-bottom: 32px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.content-header h2 {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.text-content p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.highlight-box {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(72, 202, 228, 0.08), rgba(3, 4, 94, 0.05));
    border-radius: 18px;
    border-left: 4px solid var(--primary);
    margin: 24px 0;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.7;
    margin: 0;
}

.software-section {
    padding: 80px 0;
    background: white;
}

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

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(14px, 3vw, 17px);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.software-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.software-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(3, 4, 94, 0.15);
}

.software-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(3, 4, 94, 0.1);
}

.software-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.4s;
}

.software-card:hover .software-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.08) rotate(8deg);
}

.software-title h3 {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.software-title p {
    font-size: clamp(14px, 3vw, 16px);
    color: var(--gray);
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.software-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 16px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.software-item:hover {
    background: white;
    border-left-color: var(--primary);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(3, 4, 94, 0.1);
}

.item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.software-item:hover .item-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.08);
}

.item-content h4 {
    font-size: clamp(15px, 3vw, 16px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.item-content p {
    font-size: clamp(12px, 2.5vw, 13px);
    color: var(--gray);
    line-height: 1.5;
}

.values-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(3, 4, 94, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin: 0 auto 22px;
    transition: all 0.4s;
}

.value-card:hover .value-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.12) rotate(360deg);
}

.value-card h3 {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.value-card p {
    font-size: clamp(13px, 2.5vw, 14px);
    color: var(--gray);
    line-height: 1.7;
}

.pages-navigation {
    padding: 80px 0;
    background: white;
}

.nav-header {
    text-align: center;
    margin-bottom: 50px;
}

.nav-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    color: var(--primary);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.nav-subtitle {
    font-size: clamp(14px, 3vw, 17px);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nav-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.nav-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(3, 4, 94, 0.2);
}

.nav-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--light), #a7e9f8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s;
    box-shadow: 0 8px 20px rgba(3, 4, 94, 0.15);
}

.nav-card:hover .nav-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 12px 30px rgba(3, 4, 94, 0.3);
}

.nav-card h3 {
    font-size: clamp(19px, 4vw, 22px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.nav-card:hover h3 {
    color: var(--primary);
}

.nav-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: clamp(13px, 2.5vw, 15px);
    margin-bottom: 24px;
    flex: 1;
}

.nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-light);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.4s;
    font-size: 16px;
    align-self: flex-start;
}

.nav-card:hover .nav-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(8px) scale(1.1);
    box-shadow: 0 6px 20px rgba(3, 4, 94, 0.3);
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: clamp(15px, 3vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-sidebar {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .intro-section {
        padding: 60px 0;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-visual {
        padding: 50px 30px;
    }
    
    .team-content {
        padding: 36px 28px;
    }
    
    .software-section {
        padding: 60px 0;
    }
    
    .software-card {
        padding: 36px 28px;
    }
    
    .software-header {
        flex-direction: column;
        text-align: center;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .values-section {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .pages-navigation {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 50px;
    }
    
    .intro-section {
        padding: 50px 0;
    }
    
    .icon-box {
        width: 180px;
        height: 180px;
    }
    
    .team-visual {
        padding: 40px 24px;
    }
    
    .team-content {
        padding: 28px 20px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box {
        flex-direction: column;
    }
    
    .software-card {
        padding: 28px 20px;
    }
    
    .software-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-icon {
        width: 75px;
        height: 75px;
        font-size: 36px;
    }
}