/* ===== VARIABLES ===== */
:root {
    --bg: #010225;
    --bg2: #020a3a;
    --accent: #00c8ff;
    --accent2: #0077b6;
    --accent-glow: rgba(0, 200, 255, 0.15);
    --accent-border: rgba(0, 200, 255, 0.25);
    --text: #eef2ff;
    --text-dim: rgba(238, 242, 255, 0.55);
    --text-muted: rgba(238, 242, 255, 0.28);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.14);
    --glass: rgba(255, 255, 255, 0.025);
    --glass-strong: rgba(255, 255, 255, 0.055);
    --nav-h: 4.5rem;
    --container: min(1180px, 100% - 3rem);
    --radius: 1.25rem;
    --radius-lg: 1.75rem;
    --radius-pill: 100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

/* ===== MESH BACKGROUND ===== */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(0, 200, 255, 0.11) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 85% 75%, rgba(2, 62, 138, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(0, 119, 182, 0.09) 0%, transparent 70%),
        var(--bg);
}

/* ===== NOISE TEXTURE ===== */
.noise::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.018;
    pointer-events: none;
    z-index: 0;
}

/* ===== CONTAINER ===== */
.container { width: var(--container); margin-inline: auto; }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
}

h1, .h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
h2, .h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 600; line-height: 1.3; }

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #60d4f0, var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-flow 6s linear infinite;
}

@keyframes text-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ===== GLASS ===== */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}
.glass-strong {
    background: var(--glass-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-hover);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    border-radius: var(--radius-pill);
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: all .3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 200, 255, 0.25);
    position: relative;
    overflow: hidden;
}
.btn--primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .45s ease;
}
.btn--primary:hover::before { left: 100%; }
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 200, 255, 0.35);
}

.btn--outline {
    border: 1px solid var(--border-hover);
    color: var(--text);
    background: var(--glass);
}
.btn--outline:hover {
    border-color: var(--accent-border);
    color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-2px);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 500;
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
    background: rgba(1, 2, 37, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: var(--container);
    margin-inline: auto;
}

.nav__logo {
    display: flex;
    align-items: center;
    transition: opacity .2s;
}
.nav__logo:hover { opacity: .8; }
.nav__logo-img {
    height: 150px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-dim);
    position: relative;
    transition: color .25s;
    padding-bottom: 2px;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width .25s;
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }

.nav__link--cta {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff !important;
    padding: .5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: .875rem;
    font-weight: 600;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(0,200,255,.2);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0,200,255,.35);
}

.nav__close-item { display: none; }

.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: .5rem;
    -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
    pointer-events: none;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: calc(var(--nav-h) + 5rem) 0 4rem;
    position: relative;
}
.page-hero__eyebrow { margin-bottom: 1rem; }
.page-hero__title { margin-bottom: 1.25rem; }
.page-hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--text-dim);
    max-width: 52ch;
    line-height: 1.65;
}

/* ===== SECTION SPACING ===== */
.section { padding: 6rem 0; }
.section--lg { padding: 8rem 0; }
.section-head { margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: .75rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
    font-size: 1.0625rem;
    color: var(--text-dim);
    max-width: 50ch;
    line-height: 1.7;
}

/* ===== HERO (homepage) ===== */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--nav-h) + 2rem) 0 4rem;
    overflow: hidden;
}

.hero__orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 10s ease-in-out infinite;
}
.hero__orb--1 {
    width: 500px; height: 400px;
    top: 5%; left: -5%;
    background: radial-gradient(ellipse, rgba(0,200,255,.14), transparent 70%);
    animation-delay: 0s;
}
.hero__orb--2 {
    width: 600px; height: 500px;
    bottom: 5%; right: -5%;
    background: radial-gradient(ellipse, rgba(2,62,138,.18), transparent 70%);
    animation-delay: -4s;
}
.hero__orb--3 {
    width: 300px; height: 300px;
    top: 40%; left: 40%;
    background: radial-gradient(ellipse, rgba(0,119,182,.12), transparent 70%);
    animation-delay: -7s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 15px); }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
}
.hero__eyebrow-line {
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--accent);
    opacity: .6;
}

.hero__h1 { margin-bottom: 1.5rem; }
.hero__h1 em {
    font-style: normal;
    display: block;
}
.hero__h1 em.gradient-text { display: inline; }

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 48ch;
    margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.hero__stat-num {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.hero__stat-label {
    font-size: .8125rem;
    color: var(--text-muted);
    margin-top: .25rem;
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--glass);
}
.marquee__track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee__track span {
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text-dim);
}
.marquee__sep { color: var(--accent); opacity: .6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.service-card:hover {
    border-color: var(--accent-border);
    background: var(--glass-strong);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,200,255,.1);
}
.service-card:hover::before { opacity: 1; }

.service-card--wide { grid-column: span 2; }
.service-card--wide .service-card__inner { display: flex; align-items: center; gap: 2rem; }

.service-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--accent-glow), rgba(0,119,182,.15));
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
}
.service-card:hover .service-card__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,200,255,.2);
}
.service-card--wide .service-card__icon { margin-bottom: 0; }

.service-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .625rem;
    color: var(--text);
}
.service-card__text {
    font-size: .9375rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-item {
    background: var(--glass);
    padding: 2.25rem 2rem;
    text-align: center;
    transition: background .3s;
}
.stat-item:hover { background: var(--glass-strong); }
.stat-item__num {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-item__label {
    font-size: .8125rem;
    color: var(--text-muted);
    letter-spacing: .03em;
}

/* ===== REFERENCE / PROJECT CARDS ===== */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ref-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.ref-card:hover {
    border-color: var(--accent-border);
    box-shadow: 0 20px 60px rgba(0,200,255,.1);
    transform: translateY(-4px);
}

.ref-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg2);
    position: relative;
}
.ref-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.ref-card:hover .ref-card__img img { transform: scale(1.04); }

.ref-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,200,255,.05), rgba(2,62,138,.12));
    color: var(--text-muted);
    font-size: .875rem;
}

.ref-card__body { padding: 1.75rem; }
.ref-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}
.ref-card__tag {
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    padding: .25rem .625rem;
    border-radius: var(--radius-pill);
}
.ref-card__title {
    font-size: 1.1875rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text);
}
.ref-card__desc {
    font-size: .9375rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.ref-card__stack {
    font-size: .8125rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.ref-card__stack strong { color: var(--text-dim); }
.ref-card__link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap .2s;
}
.ref-card__link:hover { gap: .625rem; }
.ref-card__link svg { transition: transform .2s; }
.ref-card__link:hover svg { transform: translateX(2px); }

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.25rem;
    transition: border-color .3s, box-shadow .3s;
}
.pricing-card--featured {
    background: var(--glass-strong);
    border-color: var(--accent-border);
    box-shadow: 0 0 0 1px var(--accent-border), 0 24px 80px rgba(0,200,255,.12);
    position: relative;
}
.pricing-card:hover {
    border-color: var(--accent-border);
    box-shadow: 0 20px 60px rgba(0,200,255,.1);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: .3rem .875rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
}

.pricing-tier {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .75rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .375rem;
    color: var(--text);
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dim);
}
.pricing-price .from {
    font-size: .8125rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-bottom: .25rem;
}

.pricing-desc {
    font-size: .9375rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin: 1.25rem 0 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features { margin-bottom: 2rem; }
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .5rem 0;
    font-size: .9375rem;
    color: var(--text-dim);
    line-height: 1.5;
}
.pricing-feature__check {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .1rem;
    color: var(--accent);
}

.pricing-note {
    font-size: .8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-border), var(--accent-border), transparent);
}

.process-step {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: border-color .3s, background .3s;
}
.process-step:hover {
    border-color: var(--accent-border);
    background: var(--glass-strong);
}

.process-step__num {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    background-color: var(--bg);
}
.process-step__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.process-step__text {
    font-size: .875rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}
.pull-quote__mark {
    font-size: 5rem;
    line-height: .7;
    color: var(--accent);
    opacity: .35;
    margin-bottom: .5rem;
    font-family: Georgia, serif;
}
.pull-quote blockquote {
    font-size: clamp(1.375rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    max-width: 36ch;
    margin-inline: auto;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--glass-strong);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p {
    font-size: 1.0625rem;
    color: var(--text-dim);
    max-width: 46ch;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: border-color .3s, background .3s;
}
.contact-info__item:hover {
    border-color: var(--accent-border);
    background: var(--glass-strong);
}
.contact-info__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .875rem;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info__label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .25rem;
}
.contact-info__value {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--text);
}

/* ===== FORM ===== */
.form { background: var(--glass-strong); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { margin-bottom: 1.25rem; }
.form__label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text-dim);
    margin-bottom: .5rem;
}
.form__input,
.form__select,
.form__textarea {
    width: 100%;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: .875rem 1.125rem;
    font-family: inherit;
    font-size: .9375rem;
    color: var(--text);
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-muted); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--accent-border);
    box-shadow: 0 0 0 3px rgba(0,200,255,.08);
}
.form__select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300c8ff' opacity='.6'%3E%3Cpath d='M5 7l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.25rem; }
.form__select option { background: #020a3a; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__submit { width: 100%; margin-top: .25rem; }

.form-ok {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    background: rgba(0,200,100,.08);
    border: 1px solid rgba(0,200,100,.2);
    border-radius: .75rem;
    color: #00c864;
    font-size: .9375rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* ===== ABOUT / O MENI ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-visual__img { width: 100%; height: 100%; object-fit: cover; }
.about-visual__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}
.about-visual__placeholder svg { color: var(--accent); opacity: .3; }

.about-text .eyebrow { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
    font-size: 1.0625rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 2rem;
}
.value-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.value-item__title {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: .375rem;
}
.value-item__text {
    font-size: .875rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.footer__brand-logo {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}
.footer__brand-logo em { font-style: normal; color: var(--accent); }
.footer__brand-logo .nav__logo-mark { color: var(--accent); }
.footer__brand-text {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 26ch;
}
.footer__col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__links a {
    font-size: .9rem;
    color: var(--text-dim);
    transition: color .2s;
}
.footer__links a:hover { color: var(--accent); }

.footer__bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: .8125rem;
    color: var(--text-muted);
}
.footer__bar a { color: var(--text-dim); transition: color .2s; }
.footer__bar a:hover { color: var(--accent); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card--wide { grid-column: span 1; }
    .service-card--wide .service-card__inner { flex-direction: column; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { aspect-ratio: 3/1; max-height: 280px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 4rem; }
    .section { padding: 4rem 0; }
    .section--lg { padding: 5rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .ref-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; }
    .hero__stats { gap: 1.5rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .cta-band { padding: 2.5rem 1.5rem; }

    .nav { overflow: visible; }
    .nav__links {
        position: fixed;
        top: 0; left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(1, 2, 37, 0.99);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 4.5rem 0 3rem;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.4,0,.2,1);
        z-index: 600;
    }
    .nav__links.open { transform: translateX(0); }

    .nav__links li:not(.nav__close-item) {
        opacity: 0;
        transform: translateX(1.5rem);
        transition: opacity .3s ease, transform .3s ease;
    }
    .nav__links.open li:nth-child(2) { opacity: 1; transform: none; transition-delay: .06s; }
    .nav__links.open li:nth-child(3) { opacity: 1; transform: none; transition-delay: .11s; }
    .nav__links.open li:nth-child(4) { opacity: 1; transform: none; transition-delay: .16s; }
    .nav__links.open li:nth-child(5) { opacity: 1; transform: none; transition-delay: .21s; }
    .nav__links.open li:nth-child(6) { opacity: 1; transform: none; transition-delay: .26s; }
    .nav__links.open li:nth-child(7) { opacity: 1; transform: none; transition-delay: .31s; }

    .nav__link {
        display: block;
        font-size: 1.625rem;
        font-weight: 600;
        letter-spacing: -.02em;
        padding: .875rem 2rem;
        color: rgba(255,255,255,.45);
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.05);
        transition: color .2s, padding-left .2s;
    }
    .nav__link:first-of-type { border-top: 1px solid rgba(255,255,255,.05); }
    .nav__link:hover, .nav__link[aria-current="page"] {
        color: var(--accent);
        padding-left: 2.5rem;
    }
    .nav__link--cta {
        display: inline-flex;
        width: auto;
        margin: 1.75rem 2rem 0;
        padding: .875rem 1.75rem;
        font-size: 1rem;
        border: none;
    }
    .nav__close-item {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 700;
        display: none;
        padding: 0;
    }
    .nav__links.open .nav__close-item { display: flex; }
    .nav__close {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.7);
        transition: background .2s, color .2s, border-color .2s, transform .25s;
        cursor: pointer;
    }
    .nav__close:hover {
        background: var(--accent-glow);
        border-color: var(--accent-border);
        color: var(--accent);
        transform: rotate(90deg);
    }
    .nav__burger { display: flex; }
    .nav__logo-img { height: 140px; }
    .nav.menu-open {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .hero__ctas { flex-direction: column; align-items: flex-start; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .stats-bar { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
}
