:root {
    --bg: #0f1724;
    --card: #0b1220;
    --muted: #94a3b8;
    --accent: #06b6d4;
    --nav: #152132;
    --test: #06b6d4;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #e6eef8;
    background: linear-gradient(180deg, #081222 0%, #071226 100%)
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px
}

header {
    position: sticky;
    top: 12px;
    z-index: 40
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--nav);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand img {
    height: 60px
}

nav ul {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

nav a:hover {
    color: #e6eef8;
}


nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}

.cta {
    background: var(--accent);
    color: #072026;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700
}

nav a:hover::after {
    transform: scaleX(1);
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    padding: 48px 0
}

.hero-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border-radius: 16px;
    padding: 28px;
    /*backdrop-filter: blur(6px);*/
    position: relative;
}

h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1
}

p.lead {
    /*color: var(--muted);*/
    margin-top: 10px
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.service {
    background: var(--card);
    padding: 28px 18px;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.services .service {
    transition: transform 0.3s ease-in-out;
}
.services .service:hover {
    transform: scale(1.05);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px
}

.gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px
}

form {
    display: grid;
    gap: 12px
}

input,
textarea {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #e6eef8
}

button {
    padding: 10px 14px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(90deg, var(--accent), #7c3aed);
    color: #042022;
    font-weight: 700;
    cursor: pointer
}

footer {
    padding: 28px 0;
    color: var(--muted);
    font-size: 0.9rem
}

@media(min-width:760px) {
    .hero {
    grid-template-columns: 1fr 420px
    }
}

.muted {
    color: var(--muted)
}

section[id] {
    scroll-margin-top: 130px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--accent);
    display: block;
    text-align: center;
}

.skyline-image {
    width: 100%;
    height: 375px;
    color: var(--test);
    object-fit: cover;
    object-position: center 46%;
    display: block;
    position: absolute;
    top: 169px;
    left: 0;
    z-index: -1;

    /*filter: brightness(0.6) sepia(1) hue-rotate(190deg) saturate(1.5);*/
}

.hand-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    position: absolute;
    top: 985px;
    left: 0;
    z-index: -1;
}
.services-hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 200px;
    z-index: 2;
    overflow: hidden;
}