:root {
    --primary: #cee679;
    --primary-dark: #b8d157;
    --secondary: #a8c85a;
    --background: #fafbfa;
    --surface: #ffffff;
    --surface-light: #f5f7f5;
    --text-primary: #2d3e2d;
    --text-secondary: #5a6b5a;
    --text-muted: #8a9b8a;
    --border: #e1e8e1;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 4px 6px -1px rgba(46, 62, 46, 0.1), 0 2px 4px -1px rgba(46, 62, 46, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(46, 62, 46, 0.15), 0 10px 10px -5px rgba(46, 62, 46, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #232d23f7;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(206, 230, 121, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
}

.nav-logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    padding: 120px 0 80px;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(206, 230, 121, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 200, 90, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--background);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--background);
}

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

.hero-image {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.image-placeholder {
    background: var(--surface-light);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.placeholder-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.placeholder-note {
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
}

.stats {
    padding: 60px 0;
    background: var(--surface);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.features {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    margin-bottom: 20px;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
}

.feature-image .image-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta {
    padding: 100px 0;
    background: var(--surface);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline */
.timeline {
    margin: 60px auto;
    max-width: 800px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.timeline-step {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
  opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-step:hover::before {
    transform: scaleX(1);
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-step.animate {
  opacity: 1;
    transform: translateY(0);
}

.timeline-step:nth-child(2).animate {
    transition-delay: 0.2s;
}

.timeline-step:nth-child(3).animate {
    transition-delay: 0.4s;
}

.timeline-step:nth-child(4).animate {
    transition-delay: 0.6s;
}

.timeline-marker {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

/* Tech Stack Section */
.tech-stack {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--surface) 0%, white 100%);
}

.tech-content {
    text-align: center;
    margin-bottom: 80px;
}

.tech-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.tech-category {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-category:hover::before {
    transform: scaleX(1);
}

.tech-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.tech-icon {
    margin-bottom: 25px;
}

.tech-icon img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tech-category:hover .tech-icon img {
    transform: scale(1.05);
}

.tech-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.tech-category p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.tech-category strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer {
    background: #232d23;
    border-top: 1px solid rgba(206, 230, 121, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-section h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-bottom {
    border-top: 1px solid rgba(206, 230, 121, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #232d23f7;
    width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid rgba(206, 230, 121, 0.2);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .tech-grid {
        max-width: 300px;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .timeline {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .timeline-step {
        padding: 25px 15px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .contact-hero .page-hero-content h1,
    .contact-hero .page-hero-content p {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-image img,
    .feature-image img,
    .careers-hero-visual img,
    .contact-hero-visual img {
        max-width: 100%;
        height: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .services-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-simple {
        padding: 24px 20px;
    }
    
    .service-card-simple h3 {
        font-size: 1.3rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    }

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}


.page-hero {
    padding: 120px 0 60px;
    background: var(--background);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.mission-card h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.mission-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.values {
    padding: 80px 0;
    background: var(--surface);
}

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

.value-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.tech-stack {
    padding: 80px 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-category h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.team-cta {
    padding: 80px 0;
    background: var(--surface);
    text-align: center;
}

.team-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-hero {
    padding: 120px 0 60px;
    background: var(--background);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.service-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.services-grid {
    padding: 80px 0;
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--background);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.service-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.service-icon {
    font-size: 2.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.service-feature {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-content h2 {
        font-size: 2rem;
    }

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

    .service-hero-text h1 {
        font-size: 2.5rem;
    }

    .service-metrics {
        max-width: 400px;
        margin: 0 auto;
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }

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

    .team-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tech-category {
        padding: 30px 25px;
    }
    
    .services-grid-simple {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .timeline {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        max-width: 600px;
    }
    
    .timeline-step {
        padding: 25px 20px;
    }
    
    .timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.careers-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.careers-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.careers-hero-visual {
    display: flex;
    justify-content: center;
}

.careers-hero-content {
    text-align: left;
}

.careers-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.careers-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.career-stat {
    text-align: center;
}

.career-stat .stat-number {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.career-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.culture {
    padding: 80px 0;
    background: var(--surface);
}

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

.culture-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.culture-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.culture-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.open-positions {
    padding: 80px 0;
}

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

.position-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.position-dept {
    background: var(--primary);
    color: var(--background);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.position-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.position-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}


.position-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.skill-tag {
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.position-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-level {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.apply-btn {
    background: var(--primary);
    color: var(--background);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.benefits {
    padding: 80px 0;
    background: var(--surface);
}

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

.benefit-category h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.benefit-category ul {
    list-style: none;
}

.benefit-category ul li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.benefit-category ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hiring-process {
    padding: 80px 0;
    background: var(--surface);
}

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

.hiring-process .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline .timeline-step {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    overflow: hidden;
}

.process-timeline .timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-timeline .timeline-step:hover::before {
    transform: scaleX(1);
}

.process-timeline .timeline-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.process-timeline .timeline-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.process-timeline .timeline-step p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.careers-cta {
    padding: 80px 0;
    background: var(--surface);
    text-align: center;
}

.careers-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-visual {
    display: flex;
    justify-content: center;
}

.contact-hero .page-hero-content h1,
.contact-hero .page-hero-content p {
    color: white !important;
    text-align: left;
}

.contact-hero .page-hero-content h1 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-text {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.process {
    padding: 80px 0;
    background: var(--surface);
}

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

.process-step {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number {
    background: var(--gradient);
    color: var(--background);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .careers-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .careers-hero-content {
        text-align: center;
    }

    .careers-hero-content h1 {
        font-size: 2.5rem;
    }

    .careers-stats {
        gap: 30px;
        justify-content: center;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .tech-content h2 {
        font-size: 2.2rem;
    }

    .tech-content p {
        font-size: 1.1rem;
    }

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

    .tech-category {
        padding: 30px 20px;
    }

    .tech-category h3 {
        font-size: 1.4rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-timeline .timeline-step {
        padding: 30px 20px;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .careers-cta-content h2 {
        font-size: 2rem;
    }

    .careers-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

.quick-contact {
    padding: 80px 0;
    background: var(--surface);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.quick-contact-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.quick-contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.quick-contact-item p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.services-overview {
    padding: 80px 0;
    background: var(--surface-light);
}

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

.service-card-simple {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Business Card Styles */
.business-card-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.business-card-container {
    width: 100%;
    max-width: 450px;
    margin: 20px;
    perspective: 1000px;
}

.business-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(206, 230, 121, 0.2);
}

.business-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.card-header {
    background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
    padding: 32px 24px 24px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid var(--primary);
}

.profile-image {
    margin-bottom: 20px;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    border: 3px solid var(--primary);
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.company-logo {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card-content {
    padding: 24px;
}

.profile-info {
    text-align: center;
    margin-bottom: 24px;
}

.profile-info h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    letter-spacing: -0.02em;
}

.profile-info h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-info .company {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.875rem;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.telegram-btn {
    background: var(--primary);
    color: var(--text-primary);
    border-color: var(--primary);
}

.telegram-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(206, 230, 121, 0.3);
}

.email-btn {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border);
}

.email-btn:hover {
    background: var(--surface-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.linkedin-btn {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.linkedin-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 62, 45, 0.3);
}

.btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}

.btn-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Business Card Responsive */
@media (max-width: 768px) {
    .business-card-body {
        padding: 0;
        min-height: 100vh;
        min-height: 100svh;
    }
    
    .business-card-container {
        margin: 0;
        max-width: 100%;
        width: 100%;
        height: 100vh;
        height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .business-card {
        width: 100%;
        max-width: 380px;
        border-radius: 6px;
        min-height: 480px;
    }
    
    .card-header {
        padding: 24px 20px 16px;
    }
    
    .image-placeholder {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    
    .profile-photo {
        width: 140px;
        height: 140px;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        top: 16px;
        right: 16px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-info h2 {
        font-size: 1.2rem;
    }
    
    .profile-info .company {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 16px 20px;
        border-radius: 6px;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
        margin-right: 16px;
    }
    
    .btn-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .business-card-container {
        padding: 15px;
    }
    
    .business-card {
        border-radius: 4px;
        min-height: 440px;
    }
    
    .card-header {
        padding: 20px 16px 12px;
    }
    
    .image-placeholder {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
    
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .profile-info h2 {
        font-size: 1.1rem;
    }
    
    .profile-info .company {
        font-size: 0.95rem;
    }
    
    .contact-btn {
        padding: 14px 18px;
        border-radius: 5px;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
        margin-right: 14px;
    }
    
    .btn-text {
        font-size: 0.95rem;
    }
}

/* Desktop enhancements */
@media (min-width: 1024px) {
    .business-card-container {
        max-width: 420px;
    }
    
    .business-card {
        border-radius: 10px;
    }
    
    .card-header {
        padding: 36px 28px 28px;
    }
    
    .image-placeholder {
        width: 90px;
        height: 90px;
        font-size: 1.1rem;
    }
    
    .profile-photo {
        width: 130px;
        height: 130px;
    }
    
    .company-logo {
        width: 44px;
        height: 44px;
        top: 18px;
        right: 18px;
    }
    
    .card-content {
        padding: 28px;
    }
    
    .profile-info h1 {
        font-size: 1.875rem;
    }
    
    .contact-actions {
        gap: 10px;
    }
    
    .contact-btn {
        padding: 14px 18px;
        border-radius: 5px;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
        margin-right: 14px;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
}


.service-card-simple h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card-simple p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.detailed-services {
    padding: 80px 0;
}

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

.service-detail {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-detail-header {
    margin-bottom: 16px;
}

.service-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-detail p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    padding: 0;
}

.service-features-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}