/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0b0d;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.highlight {
    color: #dbfc55;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dbfc55, #c8e83f);
    border-radius: 2px;
    opacity: 0.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(219, 252, 85, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(10, 11, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dbfc55;
    font-family: 'Space Grotesk', sans-serif;
}

.brand i {
    font-size: 1.8rem;
    color: #dbfc55;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #a0a0a0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #dbfc55;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #dbfc55;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    color: #0a0b0d !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 252, 85, 0.3);
}

.cta-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #dbfc55;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0b0d 0%, #151821 50%, #0a0b0d 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="heroGrad" cx="30%" cy="30%" r="60%"><stop offset="0%" stop-color="%23dbfc55" stop-opacity="0.05"/><stop offset="100%" stop-color="%23dbfc55" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23heroGrad)"/><circle cx="700" cy="700" r="300" fill="url(%23heroGrad)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(219, 252, 85, 0.1);
    color: #dbfc55;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(219, 252, 85, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-subtitle {
    margin-bottom: 3rem;
}

.hero-subtitle p {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-button.primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    color: #0a0b0d;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(219, 252, 85, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(219, 252, 85, 0.4);
}

.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #dbfc55;
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid #dbfc55;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: #dbfc55;
    color: #0a0b0d;
    transform: translateY(-3px);
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.opportunity-header h3 {
    font-size: 1.4rem;
    color: #ffffff;
}

.opportunity-badge {
    background: #dbfc55;
    color: #0a0b0d;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunity-details {
    display: flex;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.detail-item i {
    color: #dbfc55;
    font-size: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #dbfc55;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-description {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.job-description h4 {
    color: #dbfc55;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.job-description ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.job-description li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.job-description li::before {
    content: '✓';
    color: #dbfc55;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    color: #0a0b0d;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(219, 252, 85, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(219, 252, 85, 0.4);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #dbfc55;
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid #dbfc55;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #dbfc55;
    color: #0a0b0d;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.success {
    top: 30px;
    right: -30px;
}

.floating-card.remote {
    bottom: 40px;
    left: -30px;
}

.floating-card i {
    font-size: 1.5rem;
    color: #dbfc55;
}

.card-value {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
}

.card-label {
    font-size: 0.8rem;
    color: #a0a0a0;
}

/* Opportunity Details Section */
.opportunity-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0b0d 0%, #151821 50%, #0a0b0d 100%);
    position: relative;
}

.opportunity-header {
    text-align: center;
    margin-bottom: 5rem;
}

.opportunity-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.opportunity-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.opportunity-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Position Card */
.position-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.position-title h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.position-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag.featured {
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    color: #0a0b0d;
}

.tag.training {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #ffffff;
}

.salary-info {
    text-align: right;
}

.salary-range {
    margin-bottom: 0.5rem;
}

.salary-range .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dbfc55;
    font-family: 'Space Grotesk', sans-serif;
}

.salary-range .period {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-left: 0.5rem;
}

.salary-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(219, 252, 85, 0.08);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #dbfc55;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-text h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Work Process */
.work-process {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 25px;
    padding: 3rem;
}

.work-process h4 {
    color: #dbfc55;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #dbfc55, transparent);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    color: #0a0b0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-content h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Benefits Overview */
.benefits-overview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 25px;
    padding: 3rem;
}

.benefits-overview h4 {
    color: #dbfc55;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-highlight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 252, 85, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    background: rgba(219, 252, 85, 0.08);
    transform: translateY(-3px);
}

.benefit-highlight h5 {
    color: #dbfc55;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-highlight p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Company Stats */
.company-stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 25px;
    padding: 3rem;
}

.company-stats h4 {
    color: #dbfc55;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Application Note */
.application-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(219, 252, 85, 0.1);
    border: 1px solid rgba(219, 252, 85, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    color: #dbfc55;
    margin-top: 2rem;
}

.application-note i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: #0a0b0d;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.about-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-item:last-child {
    margin-bottom: 0;
}

.about-item:hover {
    background: rgba(219, 252, 85, 0.05);
    transform: translateX(10px);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-icon i {
    font-size: 1.5rem;
    color: #0a0b0d;
}

.about-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.about-details p {
    color: #a0a0a0;
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #dbfc55;
    color: #0a0b0d;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(219, 252, 85, 0.3);
}

.experience-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #151821 0%, #0a0b0d 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.services-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 252, 85, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(219, 252, 85, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: rgba(219, 252, 85, 0.08);
    border-color: #dbfc55;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(219, 252, 85, 0.2);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #dbfc55;
    color: #0a0b0d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #0a0b0d;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dbfc55;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.services-cta {
    text-align: center;
    background: rgba(219, 252, 85, 0.05);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 30px;
    padding: 4rem 3rem;
}

.services-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.services-cta p {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dbfc55, #c8e83f);
    color: #0a0b0d;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(219, 252, 85, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(219, 252, 85, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #151821 0%, #0a0b0d 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-text p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 252, 85, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(219, 252, 85, 0.08);
    border-color: #dbfc55;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #dbfc55;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #0a0b0d;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.phone-highlight {
    background: rgba(219, 252, 85, 0.2);
    color: #dbfc55;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.contact-note {
    font-size: 0.85rem;
    color: #dbfc55;
    font-weight: 500;
}

.contact-visual {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-visual:hover img {
    transform: scale(1.05);
}

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
}

.overlay-btn {
    background: #dbfc55;
    color: #0a0b0d;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(219, 252, 85, 0.3);
}

/* Footer */
.footer {
    background: #050607;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(219, 252, 85, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #dbfc55;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-text p {
    color: #a0a0a0;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dbfc55;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #dbfc55;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .contact-content,
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-stats,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .opportunity-header h2 {
        font-size: 3rem;
    }
    
    .position-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .salary-info {
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-header h2,
    .services-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 11, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        text-align: center;
    }
    
    .cta-nav {
        margin-top: 1rem;
        padding: 12px 24px;
        width: fit-content;
        align-self: center;
    }
    
    .hero-section {
        padding: 120px 0 4rem;
        min-height: auto;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .about-header h2,
    .services-header h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .about-header p,
    .services-header p {
        font-size: 1.1rem;
    }
    
    .about-section,
    .services-section,
    .contact-section,
    .opportunity-section {
        padding: 4rem 0;
    }
    
    .opportunity-header h2 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .position-card,
    .work-process,
    .benefits-overview,
    .company-stats {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step::after {
        display: none;
    }
    
    .salary-range .amount {
        font-size: 2rem;
    }
    
    .about-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-icon {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-number {
        top: 15px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .services-cta {
        padding: 2.5rem 2rem;
    }
    
    .services-cta h3 {
        font-size: 1.8rem;
    }
    
    .contact-text h2 {
        font-size: 2.2rem;
    }
    
    .contact-text p {
        font-size: 1.1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-icon {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .contact-visual img {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-text h3 {
        font-size: 1.6rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .brand {
        font-size: 1.3rem;
    }
    
    .brand i {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 100px 0 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-header h2,
    .services-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-header p,
    .services-header p {
        font-size: 1rem;
    }
    
    .about-section,
    .services-section,
    .contact-section,
    .opportunity-section {
        padding: 3rem 0;
    }
    
    .opportunity-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .position-card,
    .work-process,
    .benefits-overview,
    .company-stats {
        padding: 1.5rem 1rem;
    }
    
    .position-title h3 {
        font-size: 1.5rem;
    }
    
    .salary-range .amount {
        font-size: 1.8rem;
    }
    
    .about-item {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-icon i {
        font-size: 1.2rem;
    }
    
    .about-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .about-details p {
        font-size: 0.9rem;
    }
    
    .experience-badge {
        position: static;
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        align-self: center;
    }
    
    .experience-number {
        font-size: 1.4rem;
    }
    
    .experience-text {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.8rem 1.2rem;
    }
    
    .service-number {
        top: 10px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .services-cta {
        padding: 2rem 1.2rem;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .services-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .contact-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-note {
        font-size: 0.8rem;
    }
    
    .contact-visual img {
        height: 250px;
    }
    
    .contact-overlay {
        padding: 2rem 1.2rem 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .overlay-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .about-header h2,
    .services-header h2,
    .opportunity-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-text h2 {
        font-size: 1.6rem;
    }
    
    .position-card,
    .about-item,
    .service-card,
    .contact-item,
    .work-process,
    .benefits-overview,
    .company-stats {
        padding: 1rem;
    }
    
    .position-title h3 {
        font-size: 1.3rem;
    }
    
    .salary-range .amount {
        font-size: 1.5rem;
    }
    
    .services-cta {
        padding: 1.5rem 1rem;
    }
    
    .primary-btn,
    .secondary-btn,
    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0b0d;
}

::-webkit-scrollbar-thumb {
    background: #dbfc55;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c8e83f;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.nav-link:focus,
.primary-btn:focus,
.secondary-btn:focus,
.cta-button:focus {
    outline: 2px solid #dbfc55;
    outline-offset: 2px;
}

/* Performance optimizations */
.hero-section,
.about-section,
.services-section,
.contact-section {
    will-change: transform;
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .floating-card,
    .hero-actions {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        padding-top: 0;
    }
}
