.nav a,
.project-link {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.25s;
}

.nav a:hover,
.nav a.active,
.project-link:hover {
    color: #67e8f9;
}

.login-link {
    color: #67e8f9 !important;
    font-weight: 700 !important;
}

.user-section:hover .user-dropdown {
    display: block;
}

.danger-link {
    color: #f87171 !important;
}

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

.hero {
    max-width: 920px;
    padding: 5.5rem 0 3rem;
}

.hero-badge,
.section-head span,
.project-category,
.cta span {
    color: #67e8f9;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 1rem;
    font-size: 3.6rem;
    line-height: 1.05;
    background: linear-gradient(135deg, #fff 0%, #67e8f9 55%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 760px;
    margin-top: 1rem;
    color: rgba(255,255,255,0.68);
    font-size: 1.12rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary,
.cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 1.2rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s;
}

.btn-primary,
.cta a {
    color: #061014;
    background: linear-gradient(135deg, #67e8f9, #34d399);
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
}

.btn-primary:hover,
.btn-secondary:hover,
.cta a:hover {
    transform: translateY(-2px);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.metric,
.project-card,
.service-item,
.cta {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
}

.metric {
    padding: 1.3rem;
    border-radius: 8px;
}

.metric strong {
    display: block;
    color: #fff;
    font-size: 1.8rem;
}

.metric span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255,255,255,0.58);
}

.section-wrap {
    margin-bottom: 4.5rem;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-head h2 {
    margin-top: 0.35rem;
    font-size: 2rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.empty-projects {
    grid-column: 1 / -1;
    padding: 2.4rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.68);
    background: rgba(255,255,255,0.04);
    text-align: center;
}

.empty-projects i {
    color: #67e8f9;
    font-size: 2rem;
}

.empty-projects h3 {
    margin-top: 1rem;
    color: #fff;
}

.empty-projects p {
    margin: 0.6rem auto 0;
    max-width: 520px;
    line-height: 1.7;
}

.project-card {
    overflow: hidden;
    border-radius: 8px;
    transition: 0.25s;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(103, 232, 249, 0.42);
    box-shadow: 0 18px 42px rgba(0,0,0,0.32);
}

.project-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: 0.25s;
}

.project-card:hover .project-media img {
    transform: scale(1.035);
    opacity: 1;
}

.project-media span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: #fff;
    background: rgba(0,0,0,0.55);
    font-size: 0.78rem;
    font-weight: 800;
}

.project-body {
    padding: 1.35rem;
}

.project-body h3 {
    margin-top: 0.35rem;
    color: #fff;
    font-size: 1.35rem;
}

.project-body p,
.service-item p {
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.1rem 0;
}

.tag-list span {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.055);
    font-size: 0.8rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #67e8f9;
    font-weight: 800;
}

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

.service-item {
    min-height: 190px;
    padding: 1.35rem;
    border-radius: 8px;
}

.service-item i {
    color: #34d399;
    font-size: 1.5rem;
}

.service-item h3 {
    margin-top: 1rem;
    color: #fff;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 8px;
}

.cta h2 {
    margin-top: 0.35rem;
    font-size: 2rem;
}





@media (max-width: 980px) {

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .metrics,
    .project-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    main,

    .hero {
        padding-top: 3.5rem;
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .project-media {
        aspect-ratio: 16 / 10;
    }
}
