/* Nexa 360 - Local SEO landing pages */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: #000;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: #00d4ff; text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

/* HEADER */
.seo-header {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 28px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.seo-header .brand {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase;
    color: #fff;
}
.seo-header .brand img { width: 32px; height: 32px; }
.seo-header nav a {
    margin-left: 22px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.seo-header nav a:hover { color: #00d4ff; }
@media (max-width: 600px) {
    .seo-header { padding: 12px 16px; }
    .seo-header nav a { margin-left: 14px; font-size: 11px; }
    .seo-header nav a.nav-hide-mobile { display: none; }
}

/* HERO */
.seo-hero {
    position: relative;
    padding: 110px 28px 90px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.12), transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(0,212,255,0.06), transparent 50%),
        #000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.seo-hero .eyebrow {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
    color: rgba(0,212,255,0.85);
    margin-bottom: 22px;
    padding: 6px 14px;
    border: 1px solid rgba(0,212,255,0.35);
    border-radius: 100px;
}
.seo-hero h1 {
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
    color: #fff;
}
.seo-hero h1 .accent { color: #00d4ff; }
.seo-hero .lead {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
}
.seo-hero .cta-row {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    font-family: 'Space Mono', monospace;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.03);
    color: #fff;
    cursor: pointer;
    transition: all .25s;
}
.btn:hover { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.5); color: #fff; }
.btn.primary { background: rgba(0,212,255,0.18); border-color: rgba(0,212,255,0.55); color: #00d4ff; }
.btn.primary:hover { background: rgba(0,212,255,0.3); color: #fff; }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* SECTIONS */
section { padding: 80px 28px; max-width: 1180px; margin: 0 auto; }
section h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.01em;
}
section .section-label {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(0,212,255,0.7);
    margin-bottom: 12px;
}
section .section-intro {
    max-width: 720px;
    margin-bottom: 48px;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.75;
}

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.service-card {
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: all .3s;
}
.service-card:hover { border-color: rgba(0,212,255,0.4); background: rgba(0,212,255,0.04); transform: translateY(-2px); }
.service-card .icon {
    width: 36px; height: 36px;
    margin-bottom: 18px;
    stroke: #00d4ff; fill: none; stroke-width: 1.5;
}
.service-card h3 { font-size: 16px; margin-bottom: 10px; color: #fff; letter-spacing: 0.02em; }
.service-card p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.6); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.why-item h3 {
    font-size: 15px;
    color: #00d4ff;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.why-item p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.75; }
.why-item .num {
    display: inline-block;
    font-size: 11px;
    color: rgba(0,212,255,0.5);
    letter-spacing: 0.3em;
    margin-bottom: 8px;
}

/* PORTFOLIO PREVIEW */
.portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
    margin-bottom: 36px;
}
.portfolio-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0a0a0a;
    transition: all .3s;
}
.portfolio-card:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-2px); }
.portfolio-card video, .portfolio-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s;
}
.portfolio-card:hover video, .portfolio-card:hover img { transform: scale(1.05); }
.portfolio-card .info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.portfolio-card h3 { font-size: 14px; color: #fff; margin-bottom: 2px; letter-spacing: 0.08em; }
.portfolio-card span { font-size: 11px; color: rgba(255,255,255,0.6); }
.portfolio-cta { text-align: center; }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}
.faq-item h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.faq-item h3::before { content: "Q. "; color: #00d4ff; font-weight: 700; }
.faq-item p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.75; padding-left: 22px; }

/* CTA FINAL */
.final-cta {
    text-align: center;
    padding: 90px 28px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.12), transparent 60%),
        #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.final-cta h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.final-cta p { max-width: 580px; margin: 0 auto 32px; color: rgba(255,255,255,0.7); font-size: 15px; }

/* FOOTER */
.seo-footer {
    padding: 36px 28px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.seo-footer a { color: rgba(255,255,255,0.6); margin: 0 12px; }
.seo-footer a:hover { color: #00d4ff; }

/* RESPONSIVE */
@media (max-width: 640px) {
    section { padding: 60px 20px; }
    .seo-hero { padding: 80px 20px 70px; }
}
