* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0f1e 0%, #141b2b 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e2eaff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem; 
    border-bottom: 1px solid rgba(0, 230, 255, 0.15);
    flex-wrap: wrap;
    gap: 1rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 1rem; 
    z-index: 100;
    background: rgba(10, 15, 30, 0.8);
    border-radius: 10px; 
    margin: 1rem 2rem 0 2rem;
    width: calc(100% - 4rem); 
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #b0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #b8c6e6;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e6ff, #a96cff);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.badge {
    background: rgba(0, 230, 255, 0.1);
    color: #00e6ff;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.btn {
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    color: white;
    padding: 0.7rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 230, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(169, 108, 255, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-circle(50% 50% at 50% 50%, rgba(0, 230, 255, 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.hero-label {
    color: #00e6ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.8rem;
}

.hero h1 span {
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid rgba(0, 230, 255, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #b8c6e6;
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.decor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.decor-item {
    background: rgba(20, 30, 50, 0.5);
    border: 1px solid rgba(0, 230, 255, 0.2);
    backdrop-filter: blur(10px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00e6ff;
    transition: all 0.3s;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.decor-item:hover {
    border-color: #a96cff;
    background: rgba(169, 108, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(169, 108, 255, 0.3);
}

.decor-item:nth-child(2) {
    margin-top: 2rem;
}

.decor-item:nth-child(3) {
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 3rem;
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #00e6ff, #a96cff);
    border-image-slice: 1;
    padding-left: 2rem;
}

.section-num {
    font-size: 1.2rem;
    color: #00e6ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #b8c6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    background: rgba(20, 30, 50, 0.3);
    border: 1px solid rgba(0, 230, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    border-color: rgba(169, 108, 255, 0.5);
    transform: translateY(-8px);
    background: rgba(169, 108, 255, 0.05);
    box-shadow: 0 20px 30px rgba(169, 108, 255, 0.2);
}

.service-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1rem;
}

.service-desc {
    color: #b8c6e6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-pills span {
    background: rgba(0, 230, 255, 0.1);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    color: #b0f0ff;
    border: 1px solid rgba(0, 230, 255, 0.2);
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.tech-category {
    background: rgba(20, 30, 50, 0.3);
    border: 1px solid rgba(0, 230, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tech-category h4 {
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #00e6ff, #a96cff);
    border-image-slice: 1;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tech-item {
    color: #b8c6e6;
    font-size: 1.1rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 230, 255, 0.1);
    transition: all 0.3s;
}

.tech-item:hover {
    color: #00e6ff;
    padding-left: 10px;
}

.api-cloud {
    grid-column: span 3;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.api-cloud span {
    background: rgba(20, 30, 50, 0.5);
    border: 1px solid rgba(169, 108, 255, 0.3);
    backdrop-filter: blur(5px);
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(169, 108, 255, 0.2);
}

.api-cloud span:hover {
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(169, 108, 255, 0.4);
    border-color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.project-card {
    background: rgba(20, 30, 50, 0.3);
    border: 1px solid rgba(0, 230, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    transition: all 0.3s;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.project-card:hover {
    border-color: rgba(169, 108, 255, 0.5);
    transform: translateY(-8px);
    background: rgba(169, 108, 255, 0.05);
    box-shadow: 0 20px 30px rgba(169, 108, 255, 0.2);
}

.project-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.project-sub {
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-desc {
    color: #b8c6e6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.project-features li {
    color: #c6d4ff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-features li::before {
    content: '→';
    color: #00e6ff;
    font-size: 1rem;
}

.project-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.project-techs span {
    background: rgba(0, 230, 255, 0.1);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 230, 255, 0.2);
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.project-links {
    display: flex;
    gap: 1.5rem;
}

.project-link {
    color: #00e6ff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.2rem;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e6ff, #a96cff);
    transition: width 0.3s;
}

.project-link:hover::after {
    width: 100%;
}

.contact-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(20, 30, 50, 0.5);
    border: 1px solid rgba(0, 230, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4rem;
    margin: 5rem 0;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-left h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-left p {
    color: #b8c6e6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(0, 230, 255, 0.2);
    width: fit-content;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.contact-row .label {
    color: #a0b5e0;
    font-weight: 500;
}

.contact-row .value {
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.availability {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 230, 255, 0.2);
    padding: 1rem 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #a96cff;
    box-shadow: 0 0 20px rgba(169, 108, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
    border-radius: 20px;
}

.form-btn {
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    color: white;
    padding: 1rem;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 230, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(169, 108, 255, 0.4);
}

.form-btn:hover::before {
    left: 100%;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 230, 255, 0.15);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #b0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #a0b5e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e6ff, #a96cff);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-block {
    display: flex;
    gap: 1.2rem;
}

.social-block a {
    color: #fff;
    text-decoration: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 230, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 50%;
    background: rgba(20, 30, 50, 0.5);
    backdrop-filter: blur(5px);
}

.social-block a:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #00e6ff, #a96cff);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(169, 108, 255, 0.4);
}

.copyright {
    text-align: center;
    padding: 2rem 0;
    color: #5f7aa0;
    font-size: 0.95rem;
    border-top: 1px dashed rgba(0, 230, 255, 0.2);
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .api-cloud {
        grid-column: span 2;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-right {
        order: -1;
    }
    
    .decor-grid {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-block {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 800px) {
    nav {
        flex-direction: column;
        align-items: stretch;
        margin: 0.5rem 1rem;
        width: calc(100% - 2rem);
        padding: 1rem;
    }
    
    .nav-links {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .nav-actions {
        justify-content: center;
    }
    
    .badge {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
    }
    
    .api-cloud {
        grid-column: span 1;
    }
    
    .api-cloud span {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-block {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header {
        padding-left: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .decor-grid {
        gap: 1rem;
    }
    
    .decor-item {
        font-size: 1.5rem;
    }
    
    .service-num {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .tech-category {
        padding: 1.5rem;
    }
    
    .tech-category h4 {
        font-size: 1.2rem;
    }
    
    .tech-item {
        font-size: 1rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .form-input {
        padding: 0.8rem 1.2rem;
    }
    
    .social-block a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-label {
        font-size: 0.9rem;
    }
    
    .section-num {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-desc {
        font-size: 0.9rem;
    }
    
    .tech-pills span {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }
    
    .api-cloud span {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .project-num {
        font-size: 1.6rem;
    }
    
    .project-sub {
        font-size: 0.9rem;
    }
    
    .project-desc {
        font-size: 0.9rem;
    }
    
    .project-features li {
        font-size: 0.85rem;
    }
    
    .project-techs span {
        padding: 0.2rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .project-link {
        font-size: 0.9rem;
    }
    
    .contact-left h3 {
        font-size: 1.8rem;
    }
    
    .contact-left p {
        font-size: 0.95rem;
    }
    
    .contact-row {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .decor-grid {
        grid-template-columns: 1fr;
    }
    
    .decor-item:nth-child(2),
    .decor-item:nth-child(3) {
        margin: 0;
    }
    
    .tech-pills {
        justify-content: center;
    }
    
    .api-cloud {
        flex-direction: column;
        align-items: center;
    }
    
    .api-cloud span {
        width: 100%;
        text-align: center;
    }
    
    .project-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-right {
        display: none;
    }
}