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

:root {
    --primary-bg: #0a0e27;
    --secondary-bg: #1a1f3a;
    --accent-color: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #a0a8c5;
    --font-code: 'Fira Code', 'Courier New', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: var(--font-code);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-family: var(--font-code);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '<';
    margin-right: 4px;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a::after {
    content: '/>';
    margin-left: 4px;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::before,
.nav-menu a:hover::after {
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-content {
    max-width: 600px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.15));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-code);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title::before {
    content: '> ';
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    font-family: var(--font-code);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

a{
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1423 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: var(--font-code);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '<services>';
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 2px;
    background: var(--accent-color);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-family: var(--font-code);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-tagline {
    font-family: var(--font-code);
    font-size: 1rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(26, 31, 58, 0.8);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.process-number {
    font-family: var(--font-code);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1rem;
    line-height: 1;
    transition: all 0.4s ease;
}

.process-card:hover .process-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-name {
    font-family: var(--font-code);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.process-name::before {
    content: '//';
    color: var(--accent-color);
    margin-right: 0.5rem;
    opacity: 0.7;
}

.process-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-line {
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    opacity: 0.3;
}

.process-card:last-child .process-line {
    display: none;
}

/* Process card animations on scroll */
.process-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.process-card:nth-child(1) {
    animation-delay: 0.1s;
}

.process-card:nth-child(2) {
    animation-delay: 0.2s;
}

.process-card:nth-child(3) {
    animation-delay: 0.3s;
}

.process-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0d1128 0%, #1a1f3a 100%);
    padding: 8rem 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.about .section-header {
    margin-bottom: 4rem;
}

.about .section-title::before {
    content: '<about>';
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-content {
    max-width: 600px;
}

.about-description {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.about-description::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-family: var(--font-code);
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.12));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.15);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    background: rgba(10, 14, 39, 0.9);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    color: var(--accent-color);
    transition: transform 0.4s ease;
}

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

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-code);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.service-title::before {
    content: 'function ';
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.5;
    display: block;
    margin-bottom: 0.3rem;
}

.service-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-label {
    font-family: var(--font-code);
    font-size: 0.85rem;
    color: var(--accent-color);
    opacity: 0.6;
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
}

.service-label::before {
    content: '// ';
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg, #0a0e27 0%, #151a35 100%);
    padding: 8rem 0;
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.projects .section-header {
    margin-bottom: 6rem;
}

.projects .section-title::before {
    content: '<projects>';
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-card {
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 3rem;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.15);
}

.project-image-wrapper {
    position: relative;
    width: calc(100% - 4rem);
    height: 280px;
    margin: -3rem auto 0;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    background: rgba(10, 14, 39, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.25);
    border-color: var(--accent-color);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-content {
    padding: 3rem 2.5rem 2.5rem;
}

.project-title {
    font-family: var(--font-code);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.project-title::before {
    content: 'const ';
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.5;
    margin-right: 0.5rem;
}

.project-tagline {
    font-family: var(--font-code);
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Careers Section */
.careers {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.careers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.careers::after {
    content: '</>';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-family: var(--font-code);
    font-size: 15rem;
    color: var(--accent-color);
    opacity: 0.03;
    pointer-events: none;
    line-height: 1;
}

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

.careers-title {
    font-family: var(--font-code);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.careers-title::before {
    content: '// ';
    color: var(--accent-color);
    opacity: 0.7;
}

.careers-subtitle {
    font-family: var(--font-code);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.careers-description {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.careers-button {
    font-family: var(--font-code);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.3rem 3.5rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
}

.careers-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.careers-button:hover {
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.careers-button:hover::before {
    left: 0;
}

.careers-button:active {
    transform: translateY(-1px);
}

/* Application Section */
.application-section {
    background: linear-gradient(135deg, #0d1128 0%, #1a1f3a 100%);
    padding: 8rem 0;
    position: relative;
}

.application-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.application-form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: var(--font-code);
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 0.7rem;
    opacity: 0.9;
}

.form-label::before {
    content: '> ';
    opacity: 0.7;
}

.form-input,
.form-textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-color);
    background: rgba(10, 14, 39, 0.8);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
}

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

.form-submit {
    font-family: var(--font-code);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.3rem 3.5rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    width: 100%;
    margin-top: 1rem;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #050711 100%);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-code);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-tagline {
    font-family: var(--font-code);
    font-size: 0.95rem;
    color: var(--accent-color);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-tagline::before {
    content: '// ';
}

.footer-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    opacity: 0.8;
}

.footer-title {
    font-family: var(--font-code);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::before {
    content: 'const ';
    color: var(--accent-color);
    opacity: 0.6;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-family: var(--font-body);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.2rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    font-family: var(--font-code);
    font-size: 0.85rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.info-label::after {
    content: ':';
}

.info-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-code);
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.code-symbol {
    color: var(--accent-color);
    opacity: 0.5;
    margin: 0 0.5rem;
}

/* Page Hero */
.page-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 8rem 0 4rem;
}

.page-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.page-hero-content {
    max-width: 600px;
}

.page-hero-title {
    font-family: var(--font-code);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-title::before {
    content: '> ';
    color: var(--accent-color);
}

.page-hero-subtitle {
    font-family: var(--font-code);
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.page-hero-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 255, 136, 0.15));
}

/* About Story Section */
.about-story {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1423 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-content .section-title {
    text-align: left;
    display: block;
}

.story-content .section-title::before {
    content: '<story>';
}

.story-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.stat-number {
    font-family: var(--font-code);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Mission Vision Section */
.mission-vision {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0d1128 0%, #1a1f3a 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem;
    transition: all 0.4s ease;
}

.mv-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.15);
}

.mv-icon {
    width: 60px;
    height: 60px;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.mv-icon svg {
    width: 100%;
    height: 100%;
}

.mv-title {
    font-family: var(--font-code);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mv-title::before {
    content: '// ';
    color: var(--accent-color);
    opacity: 0.7;
}

.mv-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #151a35 100%);
}

.section-title.centered {
    text-align: center;
    display: block;
    margin-bottom: 4rem;
}

.section-title.centered::before {
    content: '<values>';
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
}

.value-number {
    font-family: var(--font-code);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.15;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    line-height: 1;
}

.value-title {
    font-family: var(--font-code);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.team-intro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-code);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0d1128 0%, #1a1f3a 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.why-item {
    background: rgba(26, 31, 58, 0.3);
    border-left: 3px solid var(--accent-color);
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(26, 31, 58, 0.5);
    transform: translateX(10px);
}

.why-title {
    font-family: var(--font-code);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 4rem;
}

.cta-left {
    border-right: 2px solid rgba(0, 255, 136, 0.2);
    padding-right: 3rem;
}

.cta-title {
    font-family: var(--font-code);
    font-size: 3rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.cta-title::before {
    content: '// ';
    color: var(--accent-color);
    opacity: 0.7;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.cta-button-large {
    font-family: var(--font-code);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.3rem 3rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.cta-button-large:hover::before {
    left: 100%;
}

/* Contact Page Styles */
.page-hero-content.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-main {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1423 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem;
}

.contact-form-title {
    font-family: var(--font-code);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-form-title::before {
    content: '// ';
    color: var(--accent-color);
    opacity: 0.7;
}

.contact-form .form-row {
    margin-bottom: 1.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-family: var(--font-code);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-title::before {
    content: 'const ';
    color: var(--accent-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    background: rgba(26, 31, 58, 0.3);
    border-left: 3px solid var(--accent-color);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(26, 31, 58, 0.5);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-content {
    flex: 1;
}

.info-heading {
    font-family: var(--font-code);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.sec-info {
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1.5rem;
    text-align: center;
}

.sec-label {
    font-family: var(--font-code);
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sec-number {
    font-family: var(--font-code);
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0 8rem;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1423 100%);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-main {
    background: rgba(26, 31, 58, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.15);
    padding: 3rem;
}

.legal-intro {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--accent-color);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-heading {
    font-family: var(--font-code);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
}

.legal-heading::before {
    content: '> ';
    color: var(--accent-color);
}

.legal-section p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-list {
    list-style: none;
    margin: 1rem 0 1.5rem 1rem;
}

.legal-list li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.legal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-box {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 2rem;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.legal-footer p {
    font-family: var(--font-code);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Below 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image-container {
        order: -1;
    }

    .hero-image {
        max-width: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .services {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-line {
        display: none;
    }

    .about {
        padding: 5rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .about-content {
        max-width: 100%;
    }

    .about-description {
        font-size: 1.15rem;
    }

    .about-image-container {
        order: -1;
    }

    .about-image {
        max-width: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projects {
        padding: 5rem 0;
    }

    .projects .section-header {
        margin-bottom: 4rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-card {
        margin-top: 2.5rem;
    }

    .project-image-wrapper {
        height: 240px;
        width: calc(100% - 3rem);
        margin: -2.5rem auto 0;
    }

    .careers {
        padding: 5rem 0;
    }

    .careers::after {
        font-size: 10rem;
        right: 3%;
    }

    .careers-title {
        font-size: 2.2rem;
    }

    .careers-subtitle {
        font-size: 1.3rem;
    }

    .careers-description {
        font-size: 1.1rem;
    }

    .careers-button {
        padding: 1.2rem 3rem;
        font-size: 0.95rem;
    }

    .application-section {
        padding: 5rem 0;
    }

    .application-form {
        padding: 2.5rem 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-submit {
        padding: 1.2rem 2.5rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .page-hero {
        padding: 6rem 0 3rem;
        min-height: 70vh;
    }

    .page-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-hero-content {
        max-width: 100%;
    }

    .page-hero-image-container {
        order: -1;
    }

    .page-hero-image {
        max-width: 400px;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .page-hero-description {
        font-size: 1.05rem;
    }

    .about-story,
    .mission-vision,
    .values-section,
    .team-section,
    .why-choose,
    .cta-section {
        padding: 5rem 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .cta-left {
        border-right: none;
        border-bottom: 2px solid rgba(0, 255, 136, 0.2);
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.05rem;
    }

    .contact-main {
        padding: 5rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .contact-form-title {
        font-size: 1.7rem;
    }

    .contact-info-title {
        font-size: 1.3rem;
    }

    .legal-main {
        padding: 2rem;
    }

    .legal-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-image {
        max-width: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-title {
        font-size: 1.5rem;
    }

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

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-number {
        font-size: 3rem;
    }

    .about-description {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .about-image {
        max-width: 300px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .project-card {
        margin-top: 2rem;
    }

    .project-image-wrapper {
        height: 200px;
        width: calc(100% - 2rem);
        margin: -2rem auto 0;
    }

    .project-content {
        padding: 2.5rem 1.5rem 2rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-tagline {
        font-size: 0.9rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .careers-title {
        font-size: 1.8rem;
    }

    .careers-subtitle {
        font-size: 1.2rem;
    }

    .careers-description {
        font-size: 1rem;
    }

    .careers-button {
        width: 100%;
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
    }

    .application-form {
        padding: 2rem 1.5rem;
    }

    .form-input,
    .form-textarea {
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
    }

    .form-submit {
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .page-hero-wrapper {
        gap: 2rem;
    }

    .page-hero-image {
        max-width: 300px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .page-hero-description {
        font-size: 1rem;
    }

    .story-text {
        font-size: 1rem;
    }

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

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

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

    .cta-grid {
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .cta-left {
        padding-bottom: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button-large {
        width: 100%;
        padding: 1.2rem 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 1.2rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-heading {
        font-size: 1rem;
    }

    .info-text {
        font-size: 0.9rem;
    }

    .legal-main {
        padding: 1.5rem;
    }

    .legal-intro {
        font-size: 1rem;
        padding: 1rem;
    }

    .legal-heading {
        font-size: 1.3rem;
    }

    .legal-section p,
    .legal-list li {
        font-size: 0.95rem;
    }

    .contact-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

