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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background gradient effect */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 140, 160, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 0%, rgba(100, 120, 140, 0.1), transparent),
        linear-gradient(to bottom, #0d0d12 0%, #0a0a0f 100%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-bottom: 2px solid rgba(17, 206, 206, 0.6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #11cece 0%, #0ea5a5 100%);
    color: #000000;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #14e0e0 0%, #11cece 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(17, 206, 206, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 48px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

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

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

.hero-logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(17, 206, 206, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0f7f7 50%, #11cece 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}

.highlight {
    color: #11cece;
    font-weight: 500;
}

.hero-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-features li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 20px;
    position: relative;
}

.hero-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #11cece;
    border-radius: 50%;
}

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

/* About Page */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

/* Team Grid */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 280px;
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(17, 206, 206, 0.3);
    box-shadow: 0 0 40px rgba(17, 206, 206, 0.2);
    transition: all 0.4s ease;
}

.member-image:hover {
    border-color: #11cece;
    box-shadow: 0 0 60px rgba(17, 206, 206, 0.4);
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: #11cece;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.member-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.member-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.member-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-link:hover {
    background: rgba(17, 206, 206, 0.15);
    border-color: #11cece;
    color: #11cece;
    transform: translateY(-3px);
}

.member-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.member-link.disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transform: none;
}

/* Services Page */
.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 48px 80px;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

.services-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

/* Service Selector Balloons */
.service-selector {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-balloon {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 200px;
}

.service-balloon:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.service-balloon.active {
    border-color: #11cece;
    background: rgba(17, 206, 206, 0.08);
    box-shadow: 0 0 40px rgba(17, 206, 206, 0.2);
}

.balloon-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.balloon-icon.software {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.balloon-icon.design {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

.balloon-icon.copy {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.service-balloon.active .balloon-icon.software {
    background: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.service-balloon.active .balloon-icon.design {
    background: rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.service-balloon.active .balloon-icon.copy {
    background: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.service-balloon h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.balloon-author {
    font-size: 13px;
    color: #11cece;
    font-weight: 500;
    margin-bottom: 8px;
}

.balloon-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Service Details */
.service-details {
    margin-bottom: 48px;
}

.service-details .service-category {
    display: none;
    animation: fadeIn 0.4s ease;
}

.service-details .service-category.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Collaboration Banner */
.collab-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(17, 206, 206, 0.05);
    border: 1px solid rgba(17, 206, 206, 0.2);
    border-radius: 16px;
    padding: 20px 28px;
    margin-bottom: 60px;
}

.collab-icon {
    flex-shrink: 0;
    color: #11cece;
}

.collab-banner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-category {
    /* No background/border - clean look */
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.service-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 12px;
}

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

.tech-tags span {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Team Projects Section */
.team-projects {
    margin-top: 80px;
    text-align: center;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

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

.project-example {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.project-example:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(17, 206, 206, 0.3);
}

.project-flow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.flow-step {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.flow-step.software {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.flow-step.design {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

.flow-step.copy {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.flow-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.project-example h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-example p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

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

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.6s;
}

/* Star decoration */
.star-decoration {
    position: fixed;
    bottom: 40px;
    right: 40px;
    opacity: 0.6;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-logo img {
        max-width: 300px;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 60px 24px 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .about-page {
        padding: 40px 24px;
    }

    .about-header {
        margin-bottom: 48px;
    }

    .team-grid {
        gap: 40px;
    }

    .member-image {
        width: 140px;
        height: 140px;
    }

    .services-page {
        padding: 40px 24px 60px;
    }

    .service-selector {
        gap: 16px;
    }

    .service-balloon {
        width: 100%;
        max-width: 280px;
        padding: 20px;
    }

    .balloon-icon {
        width: 56px;
        height: 56px;
    }

    .balloon-icon svg {
        width: 24px;
        height: 24px;
    }

    .collab-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .service-category {
        padding: 20px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .project-examples {
        grid-template-columns: 1fr;
    }

    .project-flow {
        justify-content: center;
    }

    .project-example {
        text-align: center;
    }
}
