:root {
    --primary-color: rgb(35, 74, 184);
    --secondary-color: rgb(35, 74, 184);
    --accent-color: rgb(35, 74, 184);
    --dark-bg: #0a0a0a;
    --light-bg: #f0f9ff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --gradient: rgb(35, 74, 184);
    --accent-gradient: rgb(35, 74, 184);
    --font-mono: 'Orbitron', monospace;
    --font-terminal: 'Consolas', 'Monaco', 'Courier New', monospace;
}

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

body {
    font-family: var(--font-terminal);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.90) 100%),
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(59, 130, 246, 0.02) 2px,
            rgba(59, 130, 246, 0.02) 4px
        );
    backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6), 
        0 0 0 1px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 100%
    );
    animation: headerGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(14, 165, 233, 0.15) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}


@keyframes headerGlow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-brand {
    padding-left: 0;
    margin-left: -1rem;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-brand a:hover,
.nav-brand a:visited,
.nav-brand a:active,
.nav-brand a:focus {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    transition: all 0.3s ease;
    display: block;
    padding-top: 0.5rem;
    border-bottom: 3px solid rgb(222, 160, 29);
    padding-bottom: 0.25rem;
}

.logo:hover .logo-text {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    transform: scale(1.02);
}

.footer .logo-text {
    font-size: 1.5rem;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(35, 74, 184);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 65vh;
    display: flex;
    align-items: flex-start;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(10, 15, 20, 1) 100%),
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    color: var(--white);
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(59, 130, 246, 0.02) 100px,
            rgba(59, 130, 246, 0.02) 102px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 150px,
            rgba(59, 130, 246, 0.01) 150px,
            rgba(59, 130, 246, 0.01) 152px
        );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 30%),
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(59, 130, 246, 0.008) 1deg,
            transparent 2deg
        );
    z-index: 1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(10px) translateY(-5px) rotate(0.1deg); }
    50% { transform: translateX(-5px) translateY(10px) rotate(-0.1deg); }
    75% { transform: translateX(-10px) translateY(-10px) rotate(0.05deg); }
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 3;
    padding: 0;
    padding-top: 3rem;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    color: rgb(35, 74, 184);
    letter-spacing: 1px;
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: rgb(35, 74, 184);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 74, 184, 0.3);
}

.btn-secondary {
    background: transparent;
    color: rgb(222, 160, 29);
    border: 2px solid rgb(222, 160, 29);
}

.btn-secondary:hover {
    background: rgb(35, 74, 184);
    color: var(--white);
    border: 2px solid rgb(35, 74, 184);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 74, 184, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: -1rem;
    padding-right: 3rem;
    min-height: 360px;
}

.hero-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-right: -1rem;
    padding-left: 2rem;
}

.code-block {
    background: 
        linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(10, 15, 20, 0.95) 100%),
        radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    font-family: 'Courier New', monospace;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    min-height: 360px;
    width: 480px;
}

.code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(124, 182, 104, 0.02) 20px,
            rgba(124, 182, 104, 0.02) 21px
        );
    border-radius: 12px;
    pointer-events: none;
}

.code-line {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.code-comment {
    color: #6b7280;
}

.code-keyword {
    color: var(--accent-color);
}

.code-function {
    color: var(--secondary-color);
}

.code-string {
    color: #fbbf24;
}

.code-indent {
    color: var(--white);
}

.hero-features {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(240, 249, 255, 1) 0%, rgba(235, 245, 255, 1) 100%),
        radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.03) 0%, transparent 50%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
}

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

.feature-item h3 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.process-animation {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 40%);
    animation: processGlow 20s ease-in-out infinite;
}

@keyframes processGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: scale(1);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.process-step h3 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: rgb(222, 160, 29);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
    opacity: 0.5;
}

.process-step:last-child .step-connector {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .step-connector {
        display: none;
    }
}

.services-overview {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(240, 249, 255, 1) 0%, rgba(235, 245, 255, 1) 100%),
        radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(124, 182, 104, 0.015) 80px,
            rgba(124, 182, 104, 0.015) 82px
        );
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(198, 85, 98, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(74, 124, 60, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.services-overview .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: rgb(35, 74, 184);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(77, 222, 128, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 182, 104, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.why-choose-us {
    padding: 4rem 0;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    list-style: none;
    margin-top: 2rem;
}

.why-list li {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.why-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(35, 74, 184, 0.1);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.contact-cta {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(15, 15, 20, 1) 100%),
        radial-gradient(circle at 50% 50%, rgba(124, 182, 104, 0.08) 0%, transparent 60%),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 120px,
            rgba(198, 85, 98, 0.015) 120px,
            rgba(198, 85, 98, 0.015) 122px
        );
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 182, 104, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(198, 85, 98, 0.05) 0%, transparent 40%);
    animation: contactGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes contactGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}

.contact-cta .section-title {
    color: rgb(35, 74, 184);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(5, 5, 5, 1) 100%),
        radial-gradient(circle at 50% 0%, rgba(124, 182, 104, 0.05) 0%, transparent 50%);
    color: var(--white);
    padding: 2rem 0 1rem;
    border-top: 2px solid rgba(124, 182, 104, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 182, 104, 0.3) 20%, 
        rgba(198, 85, 98, 0.3) 50%, 
        rgba(124, 182, 104, 0.3) 80%, 
        transparent 100%
    );
}

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

.footer-brand p {
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.footer-column h4 {
    font-family: var(--font-mono);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(77, 222, 128, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-wrapper {
        flex-direction: column;
        padding: 0 1rem;
    }

    .hero-left {
        margin-left: 0;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-right {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }

    .code-block {
        width: 100%;
        max-width: 100%;
        min-height: 280px;
    }

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

    .hero-subtitle {
        text-align: center;
        margin: 2rem auto;
    }

    .hero-cta {
        justify-content: center;
    }

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

    .why-stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    padding: 10rem 0 2rem;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 900;
    color: rgb(35, 74, 184);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.nav-link.active {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-link.active::before {
    left: 0;
}

.nav-link.active::after {
    width: 100%;
}

.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.tech-stack {
    background: linear-gradient(135deg, rgba(30, 91, 91, 0.05) 0%, rgba(77, 222, 128, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(77, 222, 128, 0.2);
}

.tech-stack h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.tech-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(77, 222, 128, 0.3);
}

.values-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(77, 222, 128, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.cta-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.cta-section .section-title {
    color: rgb(35, 74, 184);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 6rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-detail-content.reverse .service-detail-text {
    order: 2;
}

.service-detail-content.reverse .service-detail-visual {
    order: 1;
}

.service-title {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

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

.service-process {
    background: linear-gradient(135deg, rgba(30, 91, 91, 0.05) 0%, rgba(77, 222, 128, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    color: var(--text-secondary);
}

.service-detail-visual {
    text-align: center;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.service-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background: linear-gradient(135deg, rgba(30, 91, 91, 0.05) 0%, rgba(77, 222, 128, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(77, 222, 128, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

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

.process-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 900;
    color: rgb(35, 74, 184);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-mono);
    color: rgb(222, 160, 29);
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-content.reverse .service-detail-text,
    .service-detail-content.reverse .service-detail-visual {
        order: unset;
    }

    .service-stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .why-stats {
        flex-direction: column;
    }

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

    .service-stats {
        flex-direction: column;
    }
}

.contact-section {
    padding: 4rem 0;
}

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

.contact-info h2 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 91, 91, 0.1) 0%, rgba(77, 222, 128, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(77, 222, 128, 0.3);
}

.contact-item h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-process {
    background: linear-gradient(135deg, rgba(30, 91, 91, 0.05) 0%, rgba(77, 222, 128, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(77, 222, 128, 0.2);
}

.contact-process h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-process ol {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-process li {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(77, 222, 128, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(77, 222, 128, 0.1);
}

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

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: rgb(222, 160, 29);
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 91, 91, 0.05) 0%, rgba(77, 222, 128, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(77, 222, 128, 0.3);
}

.success-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-secondary);
    margin: 0;
}

.faq-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(77, 222, 128, 0.1);
}

.faq-item h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

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

.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.legal-document h2 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(77, 222, 128, 0.2);
}

.legal-document h3 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.legal-document p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-document ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: linear-gradient(135deg, rgba(30, 91, 91, 0.05) 0%, rgba(77, 222, 128, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(77, 222, 128, 0.2);
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    font-family: var(--font-mono);
    color: var(--primary-color);
}

.policy-footer {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    border: 1px solid rgba(77, 222, 128, 0.1);
}

.policy-footer p {
    margin: 0;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 0 1rem;
    }
    
    .legal-document h2 {
        font-size: 1.3rem;
    }
    
    .legal-document h3 {
        font-size: 1.1rem;
    }
}