:root {
    --bg: #0b3a5a;
    --accent: #4fd5ff;
    --accent-dark: #2a9ce0;
    --border: rgba(255,255,255,0.08);
    --text: #eaf6ff;
    --muted: #c8d7ee;
    --base-font-size: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: var(--base-font-size);
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, rgba(79,213,255,0.18), transparent 28%),
                radial-gradient(circle at bottom right, rgba(66,122,255,0.14), transparent 25%),
                var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 1rem;
}

/* sensible heading scale */
h1 { font-size: 2rem; line-height: 1.08; margin-bottom: 0.6rem; }
h2 { font-size: 1.5rem; line-height: 1.12; margin-bottom: 0.6rem; }
h3 { font-size: 1.15rem; line-height: 1.2; margin-bottom: 0.45rem; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 0.4rem; }

/* buttons and small text */
.btn { font-size: 0.95rem; }
.sub, p { font-size: 1rem; }

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(7, 21, 38, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.header-row {
    gap: 1rem;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-caption {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
    display: block;
    line-height: 1;
}

.nav-menu a { white-space: nowrap; }

.btn.brochure {
    background: #ffb300;
    color: #111;
    box-shadow: 0 20px 50px rgba(255,179,0,0.18);
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding: 0.2rem 0;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 1rem 1.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), #2fa8f1);
    color: #fff;
    box-shadow: 0 18px 50px rgba(79,213,255,0.18);
}

.btn.secondary {
    background: rgba(255,255,255,0.07);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn:hover {
    transform: translateY(-2px);
}

section {
    padding: clamp(80px, 7vw, 120px) 0;
    position: relative;
}

#hero {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vw, 140px) 0;
    background: linear-gradient(180deg, rgba(4, 12, 26, 0.96), rgba(4, 12, 26, 0.96)),
                url('../assets/service-thumb-05.jpg') center/cover no-repeat;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,40,70,0.55) 35%, rgba(3,40,70,0.15) 100%);
    pointer-events: none;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    max-width: 1280px;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-sidebar {
    display: grid;
    gap: 1.5rem;
    align-self: start;
}

.about-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.5rem;
    padding: 1.8rem;
}

.about-card .eyebrow {
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.5rem;
    padding: 1.25rem;
    text-align: center;
}

.stats-card strong {
    display: block;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stats-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

#hero h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

#hero p.sub {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 1.75rem;
}

#hero p.tagline {
    color: #d0f6ff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.hero-image-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 110px rgba(0,0,0,0.28);
}

.page-hero .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1.1fr);
    align-items: center;
    gap: 2.5rem;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.hero-image-label {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.85rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 999px;
}

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

.hero-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.75rem;
    padding: 1.6rem;
    text-align: center;
}

.hero-stat span {
    display: block;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
}

.hero-stat strong {
    display: block;
    color: #ffffff;
    font-size: 2.35rem;
    margin-bottom: 0.65rem;
}

.hero-stat p {
    color: #c8d7ee;
    line-height: 1.7;
    margin: 0;
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-intro p {
    color: #c8d7ee;
    font-size: 1rem;
}

.contact-cta {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 2.5rem;
    margin: 0 auto;
}

.contact-cta .container {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 320px);
    align-items: center;
    gap: 1.5rem;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #c8d7ee;
    margin: 0;
}

section:not(#hero):not([id$="-hero"]):not(#perfection):not(#projects):not(#testimonials):not(footer) {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    box-shadow: 0 28px 90px rgba(0,0,0,0.08);
    padding: clamp(70px, 6vw, 100px) 0;
    backdrop-filter: blur(14px);
}

section > .container {
    position: relative;
    z-index: 1;
}

h2 {
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 4rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #6bd0ff);
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 0.8rem;
}

#contact-form-section,
#contact-info,
#team-overview,
#team-list,
#team-contact,
#about-content,
#service-content,
#industries-served {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: clamp(60px, 5vw, 85px) 0;
    box-shadow: 0 28px 80px rgba(0,0,0,0.08);
}

#contact-hero,
#team-hero,
#service-hero,
#corporate-hero,
#about-hero,
#services-hero {
    padding: clamp(90px, 10vw, 140px) 0;
    background: radial-gradient(circle at top right, rgba(79,213,255,0.16), transparent 18%),
                radial-gradient(circle at bottom left, rgba(66,122,255,0.12), transparent 20%),
                linear-gradient(180deg, rgba(7,21,38,1) 0%, rgba(5,15,32,0.98) 100%);
    border-radius: 2rem;
    overflow: hidden;
}

#contact-hero::before,
#team-hero::before,
#service-hero::before,
#corporate-hero::before,
#about-hero::before,
#services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 26%);
    pointer-events: none;
}

#contact-form {
    display: grid;
    gap: 1rem;
    max-width: 620px;
    margin-top: 2rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: #eef4ff;
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

#contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(79,213,255,0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-member {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 2rem 1.7rem;
    text-align: center;
    box-shadow: 0 22px 70px rgba(0,0,0,0.14);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    border-color: rgba(79,213,255,0.3);
    background: rgba(255,255,255,0.08);
}

.team-member img {
    max-width: 110px;
    margin: 0 auto 1.4rem;
}

.team-member h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: var(--muted);
    line-height: 1.8;
}

footer {
    background: linear-gradient(180deg, rgba(2,8,18,0.98), rgba(7,16,34,0.98));
    border-top: 1px solid rgba(79,213,255,0.14);
}

footer p {
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(79,213,255,0.14);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-content h3 {
    color: #ffffff;
}

.footer-content a {
    color: #b8d6fb;
}

.footer-content a:hover {
    color: var(--accent);
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #ffffff;
}

.btn.primary {
    background: linear-gradient(135deg, #4fd5ff, #42a5fd);
}

.btn.secondary {
    background: rgba(79,213,255,0.1);
    color: #eef4ff;
    border-color: rgba(79,213,255,0.25);
}

.btn.secondary:hover {
    background: rgba(79,213,255,0.18);
}

@media (max-width: 1024px) {
    section:not(#hero):not([id$="-hero"]):not(#perfection):not(#projects):not(#testimonials):not(footer) {
        padding: 60px 0;
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    max-width: 1280px;
}

.hero-copy {
    max-width: 720px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

#hero h1 {
    color: #ffffff;
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1.4rem;
}

#hero p.sub {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 1.75rem;
}

#hero p.tagline {
    color: #d0f6ff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.hero-image-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 110px rgba(0,0,0,0.28);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.hero-image-label {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.85rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 999px;
}

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

.hero-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.75rem;
    padding: 1.6rem;
    text-align: center;
}

.hero-stat span {
    display: block;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
}

.hero-stat strong {
    display: block;
    color: #ffffff;
    font-size: 2.35rem;
    margin-bottom: 0.65rem;
}

.hero-stat p {
    color: #c8d7ee;
    line-height: 1.7;
    margin: 0;
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-intro p {
    color: #c8d7ee;
    font-size: 1rem;
}

.contact-cta {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 2.5rem;
    margin: 0 auto;
}

.contact-cta .container {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 320px);
    align-items: center;
    gap: 1.5rem;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #c8d7ee;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-scroll-banner {
    overflow: hidden;
    border-radius: 2.5rem;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(8, 16, 35, 0.75);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 28px 90px rgba(0,0,0,0.28);
    position: relative;
    min-height: 520px;
    width: 100%;
    max-width: 700px;
    padding: 1.1rem 1.25rem 1.1rem;
}

.hero-scroll-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 40%, rgba(0,0,0,0.18));
    pointer-events: none;
}


.scroll-track {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0.75rem 1.25rem;
    animation: scrollBanner 28s linear infinite;
}

.scroll-item {
    flex: 0 0 auto;
    min-width: 320px;
    position: relative;
}

.scroll-card {
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    transition: transform 0.3s ease;
}

.scroll-card:hover {
    transform: translateY(-4px);
}

.scroll-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.scroll-label {
    padding: 1rem 1.15rem;
    color: #eef4ff;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
    background: rgba(4, 14, 29, 0.82);
}

@keyframes scrollBanner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.visual-grid {
    display: grid;
    gap: 1.25rem;
    width: 100%;
}

.hero-card {
    width: 100%;
    max-width: 480px;
    min-height: 360px;
    border-radius: 2rem;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 26px 60px rgba(0,0,0,0.18);
    display: grid;
    grid-template-rows: auto minmax(160px, 1fr);
}

.hero-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
    opacity: 1;
}

.hero-card img[loading="lazy"] {
    opacity: 0.75;
}

.hero-card {
    animation: floatCard 10s ease-in-out infinite alternate;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.hero-card-copy {
    padding: 1.5rem;
}

@keyframes floatCard {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

.hero-card-copy {
    padding: 1.5rem;
}

.hero-card-copy h3 {
    margin-bottom: 0.85rem;
    font-size: 1.18rem;
}

.hero-card-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-card-copy h3 {
    margin-bottom: 0.85rem;
    font-size: 1.15rem;
}

.hero-card-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-card-1 {
    max-width: 520px;
}

.hero-card-2,
.hero-card-3 {
    max-width: 100%;
}

#services-hero {
    padding: clamp(100px, 12vw, 140px) 0 4rem;
    background: radial-gradient(circle at top left, rgba(79,213,255,0.08), transparent 25%),
                radial-gradient(circle at bottom right, rgba(66,122,255,0.06), transparent 24%),
                linear-gradient(180deg, rgba(7,21,38,1) 0%, rgba(5,15,32,0.98) 100%);
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.services-hero-copy {
    max-width: 620px;
}

.services-hero-copy .eyebrow {
    margin-bottom: 1.2rem;
}

.services-hero-right {
    display: grid;
    justify-items: end;
    gap: 1.25rem;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 680px;
}

.hero-card-body {
    padding: 2rem;
}

.hero-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-list.compact {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list.compact li {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.25rem;
    padding: 1rem 1.1rem;
    color: #d8e5ff;
}

.services-hero-cards {
    display: grid;
    gap: 1.25rem;
}

.small-card {
    padding: 1.5rem;
    border-radius: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.small-card h3 {
    margin-bottom: 0.75rem;
}

.small-card p {
    color: var(--muted);
    line-height: 1.8;
}

#services-list {
    padding-bottom: 4rem;
}

.services-contact-panel {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.services-contact-panel h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.services-contact-panel p,
.services-contact-panel strong {
    color: var(--muted);
}

.services-contact-panel strong {
    display: inline-block;
    margin-right: 0.5rem;
}

@media (max-width: 1024px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
    }

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

#about-hero {
    padding-top: 120px;
    padding-bottom: 120px;
    background: radial-gradient(circle at top left, rgba(79,213,255,0.08), transparent 28%),
                radial-gradient(circle at bottom right, rgba(66,122,255,0.06), transparent 24%),
                linear-gradient(180deg, rgba(7,21,38,1) 0%, rgba(5,15,32,0.98) 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.about-text {
    max-width: 680px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    flex: 1 1 165px;
    min-width: 165px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem;
    padding: 1.2rem 1.25rem;
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.45rem;
    color: #ffffff;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.about-cards {
    display: grid;
    gap: 1.25rem;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 1.8rem;
    box-shadow: 0 25px 65px rgba(0,0,0,0.16);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.info-card p {
    color: var(--muted);
    line-height: 1.75;
}

#about-content {
    padding-bottom: 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-block h2 {
    margin-bottom: 1rem;
}

.about-block p {
    color: var(--muted);
    line-height: 1.8;
}

.about-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.panel-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 1.8rem;
    box-shadow: 0 25px 65px rgba(0,0,0,0.14);
}

.panel-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-list li {
    margin-bottom: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
}

.feature-section h2 {
    color: #ffffff;
    margin-bottom: 1.4rem;
}

.feature-list.feature-list-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-list.feature-list-compact li {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    padding: 1rem 1.2rem;
    color: var(--muted);
}
.section-intro {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: var(--muted);
}

h2 {
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

h3 {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
}

p {
    color: var(--muted);
}

#perfection,
#projects,
#testimonials,
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
}

#perfection,
#projects,
#testimonials {
    background: rgba(255,255,255,0.02);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2.2rem 0 2.5rem;
}

.feature-list li {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.4rem 1.2rem;
    border-radius: 1.5rem;
    color: #c8d7ee;
}

#services {
    text-align: center;
}

.services-grid,
.projects-grid,
.industry-grid {
    display: grid;
    gap: 1.5rem;
}

.services-grid,
.projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card,
.project-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 22px 60px rgba(0,0,0,0.16);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79,213,255,0.28);
    background: rgba(255,255,255,0.08);
}

.service-card img,
.project-card img {
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
}

.industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.industry-grid > div {
    padding: 1.3rem 1.1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #c8d7ee;
}

.project-summary {
    margin-top: 3rem;
    background: rgba(255,255,255,0.04);
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 22px 55px rgba(0,0,0,0.14);
    display: grid;
    gap: 1.5rem;
}

.project-summary h3 {
    margin-top: 0;
    color: #ffffff;
}

.project-list {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0 0;
}

.project-list li {
    margin-bottom: 0.85rem;
    line-height: 1.75;
}

#testimonials {
    text-align: center;
}

.testimonial {
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.04);
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 22px 55px rgba(0,0,0,0.14);
    max-width: 680px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #dce6ff;
}

.testimonial cite {
    font-weight: 700;
    color: #ffffff;
}

footer {
    background: #04101f;
    color: var(--muted);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-content a:hover {
    color: #ffffff;
}

.hero-scroll-banner {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1.5rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.25rem;
}

.hero-scroll-banner::-webkit-scrollbar {
    display: none;
}

.hero-scroll-banner {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-scroll-banner img {
    flex: 0 0 min(280px, 45%);
    min-width: 280px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.5rem;
    padding: 1.5rem;
    scroll-snap-align: start;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }
}

@media (max-width: 820px) {
    .nav-menu {
        display: none;
    }

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

    section {
        padding: 70px 0;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
    }

    .feature-list,
    .services-grid,
    .projects-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    #hero h1 {
        font-size: 2.1rem;
    }
}

.page-hero {
    padding: clamp(110px, 14vw, 160px) 0;
    background: linear-gradient(180deg, rgba(3,25,45,0.9), rgba(3,25,45,0.9)),
                radial-gradient(circle at top left, rgba(79,213,255,0.28), transparent 22%),
                radial-gradient(circle at bottom right, rgba(66,122,255,0.22), transparent 24%);
    overflow: hidden;
}
.page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: center;
}
.page-hero h1 {
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    line-height: 1.04;
    margin-bottom: 1rem;
}
.page-hero p.sub {
    max-width: 680px;
    margin-bottom: 1.8rem;
    color: rgba(255,255,255,0.9);
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-banner-card,
.banner-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 35px 120px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-banner-card img,
.banner-image-card img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}
.hero-banner-section {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
}
.banner-slider {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
}
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.banner-slide.active {
    opacity: 1;
    z-index: 1;
}
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.38);
    color: #fff;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
}
.banner-control:hover {
    background: rgba(0,0,0,0.6);
}
.banner-control.prev {
    left: 1.25rem;
}
.banner-control.next {
    right: 1.25rem;
}
.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.65rem;
    z-index: 2;
}
.banner-dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.banner-dot.active,
.banner-dot:hover {
    background: rgba(255,255,255,0.95);
    transform: scale(1.1);
}
.hero-image-label {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.95rem 1.15rem;
    background: rgba(0,0,0,0.42);
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.95rem;
}
.hero-banner-section .hero-image-label {
    display: none;
}
@media (max-width: 820px) {
    .banner-slider {
        min-height: 280px;
    }
}
@media (max-width: 640px) {
    .banner-slider {
        min-height: 220px;
    }
}
}
.bg-light-gray {
    background: rgba(255,255,255,0.04);
}
.section-block {
    padding: 4rem 0;
}
.text-center {
    text-align: center;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}
.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.9rem;
}
.policy-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
}
.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.stats-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.75rem;
    padding: 1.75rem;
    text-align: center;
}
.stats-card strong {
    display: block;
    font-size: 2.75rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
}
.stats-card span {
    color: var(--muted);
}
.clients-grid,
.testimonial-grid,
.contact-columns,
.services-grid {
    display: grid;
    gap: 1.25rem;
}
.clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.client-item,
.testimonial-card,
.office-card {
    padding: 1.5rem;
    border-radius: 1.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.client-item {
    text-align: center;
    min-height: 140px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 700;
}
.testimonial-card p {
    margin-bottom: 1rem;
    color: #dce6ff;
    line-height: 1.8;
}
.testimonial-card cite {
    display: block;
    color: #ffffff;
    font-weight: 700;
}
.contact-columns {
    grid-template-columns: 1.2fr 0.8fr;
}
.contact-form {
    display: grid;
    gap: 1rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: #eef4ff;
    border-radius: 1rem;
    padding: 1rem 1.15rem;
}
.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(79,213,255,0.1);
}
@media (max-width: 1024px) {
    .page-hero .container,
    .contact-columns,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .page-hero .hero-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 820px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    .contact-columns {
        grid-template-columns: 1fr;
    }
}
