/* =====================================================
   ANDOR v2 — template.css
   1 Fuentes · 2 Variables · 3 Base · 4 Layout
   5 Header · 6 Hero · 7 Hero visual · 8 Marquee
   9 Proyectos · 10 Servicios · 11 Precios
   12 Proceso · 13 Sobre mí · 14 Contacto/Footer/FAB
   15 Responsive
===================================================== */

/* ===== 1. FUENTES ===== */
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bricolage-grotesque-v9-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/bricolage-grotesque-v9-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/bricolage-grotesque-v9-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/ibm-plex-sans-v23-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/ibm-plex-sans-v23-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/ibm-plex-sans-v23-latin-600.woff2') format('woff2');
}

/* ===== 2. VARIABLES ===== */
:root {
    --bg: #0a0a0b;
    --bg2: #121214;
    --paper: #f3efe6;
    --muted: #d4d0c9;
    --line: rgba(255, 255, 255, .08);
    --cyan: #2de2ff;
    --orange: #ff5c2b;
    --wrap: 1180px;
}

:root {
    --cc-bg: #1e1e24;
    --cc-text: #f3efe6;
    --cc-btn-primary-bg: #2de2ff;
    --cc-btn-primary-text: #0a0a0b;
    --cc-btn-primary-hover-bg: #1bc8e8;
    --cc-btn-secondary-bg: transparent;
    --cc-btn-secondary-text: #2de2ff;
    --cc-btn-secondary-hover-bg: rgba(45,226,255,.1);
    --cc-separator-bg: rgba(255,255,255,.08);
    --cc-cookie-category-block-bg: #121214;
    --cc-cookie-category-block-bg-hover: #1e1e24;
    --cc-toggle-bg-on: #2de2ff;
    --cc-toggle-bg-off: #444;
    --cc-toggle-knob-bg: #0a0a0b;
    --cc-block-text: #9a9690;
    --cc-link-color: #2de2ff;
}

/* ===== 3. BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
html {
    height: 100%;
}
body {
    background: var(--bg);
    color: var(--paper);
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

/* ===== 4. LAYOUT (centrado) ===== */
.hero,
.projects,
.services,
.pricing,
.process,
.about,
.contact {
    padding: 80px 6vw;
}

/* ===== 5. HEADER (sticky, transparente) ===== */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 6vw;
    background: rgba(10, 10, 11, .72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.logo img {
    height: 58px;
    width: auto;
}
@media (min-width: 901px) {
    .nav-mini {
        position: fixed;
        top: 26px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 70;
    }
}
.nav-mini {
    display: flex;
    gap: 28px;
    font-size: 1rem;
}
.nav-mini a {
    color: var(--paper);
    transition: color .15s ease;
}
.nav-mini a:hover {
    color: var(--paper);
}
.pill-wa {
    background: var(--cyan);
    color: #04222a;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 100px;
    transition: transform .15s ease;
}
.pill-wa:hover {
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}
.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--paper);
    transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
}

/* ===== 6. HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1.2fr .95fr;
    gap: 54px;
    align-items: center;
}
.tag {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}
.hero h1 span {
    color: var(--muted);
    font-weight: 400;
}
.hero-p {
    color: var(--muted);
    font-size: 1.12rem;
    margin: 22px 0 30px;
    max-width: 42ch;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cyan);
    color: #04222a;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 100px;
    transition: transform .15s ease, box-shadow .15s ease;
}
.page-inner .wa {
    color: #04222a;
}
.wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 226, 255, .35);
}
.ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    color: var(--paper);
    padding: 13px 22px;
    border-radius: 100px;
    transition: border-color .15s ease, background .15s ease;
}
.ghost:hover {
    border-color: var(--cyan);
    background: rgba(45, 226, 255, .06);
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 38px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}
.hero-stats strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--cyan);
}
.hero-stats small {
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.founder {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}
.founder-ph {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: .5rem;
    color: var(--muted);
    background: var(--bg2);
    border: 1px solid var(--cyan);
    box-shadow: 0 0 16px rgba(45, 226, 255, .3);
}
.founder-ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.founder-tx strong {
    display: block;
    font-weight: 600;
}
.founder-tx small {
    color: var(--muted);
}

/* ===== 7. HERO VISUAL (browsers) ===== */
.hero-visual {
    position: relative;
    min-height: 360px;
}
.hero-visual::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -8%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(45, 226, 255, .22), transparent 60%);
    filter: blur(14px);
    z-index: 0;
}
.browser {
    position: absolute;
    width: 86%;
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
    transition: transform .3s ease;
}
.b1 {
    top: 0;
    right: 0;
    transform: rotate(-4deg);
    z-index: 3;
}
.b2 {
    top: 90px;
    right: 44px;
    transform: rotate(5deg);
    opacity: .75;
    z-index: 2;
}
.hero-visual:hover .b1 {
    transform: rotate(-2deg) translateY(-8px);
}
.hero-visual:hover .b2 {
    transform: rotate(7deg) translate(14px, 6px);
}
.browser-bar {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
}
.browser-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}
.browser-body {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
}
.browser-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.b1 .browser-body {
    background: linear-gradient(135deg, #123b31, #0e2622);
    color: #35e0a0;
}
.b2 .browser-body {
    background: linear-gradient(135deg, #3b1a1a, #241010);
    color: #e08a7a;
}
.float-label {
    position: absolute;
    bottom: -8px;
    right: 10px;
    z-index: 4;
    background: var(--orange);
    color: #1a0800;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
}

/* ===== 8. MARQUEE ===== */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    white-space: nowrap;
}
.marquee {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--paper);
    animation: scroll 30s linear infinite;
}
.marquee span {
    color: var(--cyan);
}
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== 9. PROYECTOS ===== */
.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 34px;
}
.section-top h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
}
.section-top p {
    color: var(--muted);
    max-width: 34ch;
    text-align: right;
}
.proj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.proj {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: transform .6s ease, box-shadow .25s ease, opacity .6s ease;
}
.proj.reveal {
    opacity: 1;
    transform: translateY(0);
}
.proj:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .5);
}
.proj-real {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(45, 226, 255, .35);
}
.proj-real:hover {
    box-shadow: 0 24px 60px rgba(45, 226, 255, .5);
}
.proj-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 0;
}
.proj-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.pb {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: .6rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 100px;
}
.pb.real {
    background: var(--cyan);
    color: #04222a;
}
.pb.demo {
    background: rgba(255, 255, 255, .14);
    color: var(--paper);
}
.proj-meta {
    padding: 14px 16px 18px;
}
.proj-meta h3 {
    font-size: 1rem;
    font-weight: 700;
}
.proj-meta p {
    color: var(--muted);
    font-size: .85rem;
    margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .proj {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* ===== 10. SERVICIOS (2 columnas) ===== */
.services {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 48px;
    align-items: start;
}
.services h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    position: sticky;
    top: 110px;
}
.svc-list {
    border-top: 1px solid var(--line);
}
.svc-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 4px;
    border-bottom: 1px solid var(--line);
    transition: padding-left .2s ease, background .2s ease;
}
.svc-item:hover {
    padding-left: 14px;
    background: linear-gradient(90deg, rgba(45, 226, 255, .05), transparent);
}
.svc-num {
    color: var(--cyan);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: .95rem;
}
.svc-item > div {
    flex: 1;
}
.svc-item h3 {
    font-size: 1.3rem;
}
.svc-item p {
    color: var(--muted);
    margin-top: 2px;
}
.svc-arrow {
    color: var(--muted);
    font-size: 1.3rem;
    transition: transform .2s ease, color .2s ease;
}
.svc-item:hover .svc-arrow {
    transform: translateX(6px);
    color: var(--cyan);
}

/* ===== 11. PRECIOS ===== */
.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.tier {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, border-color .2s ease;
}
.tier:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 226, 255, .4);
}
.tier.feat {
    border-color: var(--cyan);
    box-shadow: 0 0 0 1px var(--cyan), 0 24px 60px rgba(45, 226, 255, .14);
}
.t-badge {
    align-self: flex-start;
    background: var(--orange);
    color: #1a0800;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.t-name {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    font-weight: 600;
}
.t-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2.7rem;
    margin: 8px 0 2px;
}
.t-inc {
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: 18px;
}
.tier ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    font-size: .92rem;
}
.tier li {
    padding-left: 22px;
    position: relative;
}
.tier li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}
.tier .wa,
.tier .ghost {
    margin-top: auto;
    width: 100%;
}

/* Mantenimiento */
.maint {
    margin-top: 26px;
    border: 1px dashed var(--line);
    border-radius: 18px;
    padding: 26px;
}
.maint-opt {
    display: inline-block;
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 10px;
}
.maint > p {
    color: var(--muted);
    max-width: 56ch;
}
.maint-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 18px;
}
.maint-row > div {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    transition: transform .2s ease, border-color .2s ease;
}
.maint-row > div:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 226, 255, .4);
}
.maint-row b {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.4rem;
}
.maint-row b span {
    font-size: .8rem;
    color: var(--muted);
    font-family: 'IBM Plex Sans', sans-serif;
}
.maint-row small {
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

/* ===== 12. PROCESO ===== */
.process h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    margin-bottom: 34px;
}
.steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 560px;
    padding-left: 8px;
}
.steps::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: var(--line);
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    position: relative;
}
.step-n {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    background: var(--bg);
    display: grid;
    place-items: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.step h3 {
    font-size: 1.2rem;
}
.step p {
    color: var(--muted);
    margin-top: 2px;
}

/* ===== 13. SOBRE MÍ ===== */
.about {
    display: grid;
    grid-template-columns: .85fr 1.35fr;
    gap: 46px;
    align-items: center;
}
.about-photo {
    aspect-ratio: 1;
    border-radius: 20px;
    background: radial-gradient(120% 100% at 30% 20%, #123b42, #0e1416);
    border: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #6fa9b2;
    font-size: .85rem;
    padding: 18px;
    text-align: center;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.about-txt h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
.about-txt h2 em {
    font-style: normal;
    color: var(--cyan);
}
.about-txt p {
    color: var(--muted);
    margin-top: 16px;
    font-size: 1.05rem;
}

/* ===== 14. CONTACTO + FOOTER + FAB ===== */
.contact {
    text-align: center;
    padding: 100px 28px;
}
.contact h2 {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
}
.contact p {
    color: var(--muted);
    margin: 16px 0 30px;
}
.contact-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 34px 6vw;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .88rem;
}
.fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fab a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .45);
    transition: transform .15s ease;
}
.fab a:hover {
    transform: scale(1.1);
}
.fab a svg {
    width: 24px;
    height: 24px;
}
.fab-w { background: #25D366; }
.fab-c { background: var(--cyan); }
.fab-p {
    background: var(--paper);
    color: var(--bg);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-legal a {
    color: var(--muted);
    font-size: .88rem;
    transition: color .2s ease;
}
.footer-legal a:hover {
    color: var(--cyan);
}

/* Footer - iconos redes sociales */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .3s, box-shadow .3s;
}

.footer-social a svg {
    width: 19px;
    height: 19px;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(45, 226, 255, .3);
}

/* ===== 15. PÁGINAS INTERIORES ===== */
.page-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 60px 6vw 90px;
    width: 100%; 
    flex: 1;     
}
.page-inner h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 16px;
}
.page-inner h2,
.page-inner h3 {
    margin-bottom: 14px;
}
.page-inner p {
    color: var(--muted);
    margin-bottom: 16px;
}
.page-inner a {
    color: var(--cyan);
}
.page-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.page-inner ul,
.page-inner ol {
    color: var(--muted);
    margin: 0 0 16px 20px;
}

/* ===== 16. SERVICIOS (artículo) ===== */
.serv-page {
    max-width: 900px;
    margin: 0 auto;
}
.serv-intro {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.serv-title-h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.serv-card {
    background: rgba(45, 226, 255, .03);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 20px;
    transition: border-color .25s ease;
}
.serv-card:hover {
    border-color: var(--cyan);
}
.serv-card h2 {
    color: var(--cyan);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.serv-card p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 12px;
}
.serv-card .serv-feats {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 0;
}
.serv-extra-title {
    color: var(--cyan);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 40px 0 20px;
}
.serv-extra {
    background: rgba(45, 226, 255, .03);
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 8px 20px;
}
.serv-extra > div {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: rgba(255, 255, 255, .7);
}
.serv-extra > div:last-child {
    border-bottom: none;
}
.serv-price {
    color: var(--cyan);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
}
.serv-iva {
    color: var(--muted);
    font-size: .75rem;
    margin: 10px 0 40px;
}
.serv-cta {
    text-align: center;
    padding: 40px;
    background: rgba(45, 226, 255, .05);
    border: 1px solid var(--cyan);
    border-radius: 20px;
}
.serv-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.serv-cta p {
    color: var(--muted);
    margin-bottom: 24px;
}
.serv-cta .wa,
.serv-cta .ghost {
    margin: 5px;
}
.serv-volver {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    transition: background .2s ease, color .2s ease;
}
.serv-volver:hover {
    background: var(--cyan);
    color: #0a0a0b;
}
.serv-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.serv-compare > div {
    background: var(--bg2);
    border: 1px solid var(--line);
    padding: 1.5rem;
    border-radius: 4px;
}
.serv-compare .serv-bad h3 {
    color: var(--muted);
    margin-bottom: 1rem;
}
.serv-compare .serv-good {
    border-color: var(--cyan);
}
.serv-compare .serv-good h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
}
.serv-compare .serv-bad p {
    color: var(--muted);
    font-size: .9rem;
}
.serv-compare .serv-good p {
    color: var(--paper);
    font-size: .9rem;
}
.serv-list {
    list-style: none;
    padding: 1rem 1.5rem;
    background: var(--bg2);
    border-left: 3px solid var(--cyan);
    margin: 1.5rem 0;
}
.serv-botones {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.serv-btn-primary {
    display: inline-block;
    background: var(--cyan);
    color: #0a0a0b !important;
    font-weight: 700;
    padding: .8rem 2rem;
    border-radius: 4px;
    font-size: .9rem;
}
.serv-btn-ghost {
    display: inline-block;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-weight: 700;
    padding: .8rem 2rem;
    border-radius: 4px;
    font-size: .9rem;
}
.serv-precios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.serv-precios > div {
    background: var(--bg2);
    border: 1px solid var(--line);
    padding: 1.5rem;
    border-radius: 4px;
}
.serv-precios .serv-feat {
    border-color: var(--cyan);
}
.serv-precios h3 {
    color: var(--paper);
    margin-bottom: .5rem;
}
.serv-precios .serv-precio {
    color: var(--cyan);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.serv-precios p:last-child {
    color: var(--muted);
    font-size: .9rem;
}

/* ===== 17. PRESUPUESTO ===== */
.pp {
    max-width: 820px;
    margin: 0 auto;
}
.volver {
    display: inline-block;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .85rem;
    margin: 10px 0 24px;
    transition: background .2s ease, color .2s ease;
}
.volver:hover {
    background: var(--cyan);
    color: #04222a;
}
.pp h1 {
    color: var(--cyan);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.pp-sub {
    color: var(--muted);
    margin: 8px 0 40px;
}
.pp-paso {
    color: var(--cyan);
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 34px 0 16px;
}
.pp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}
.pp-card {
    background: var(--bg2);
    border: 2px solid var(--line);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.pp-card:hover {
    border-color: var(--cyan);
}
.pp-card.sel {
    border-color: var(--cyan);
    box-shadow: 0 0 25px rgba(45, 226, 255, .3);
}
.pp-center {
    text-align: center;
}
.pp-tier {
    color: var(--cyan);
    font-size: .9rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}
.pp-price {
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}
.pp-price span {
    font-size: .9rem;
    color: var(--muted);
    font-family: 'IBM Plex Sans', sans-serif;
}
.pp-price-sm {
    font-size: 1.5rem;
    margin-bottom: 0;
}
.pp-list {
    list-style: none;
    font-size: .8rem;
}
.pp-list li {
    color: rgba(255, 255, 255, .7);
    padding: 4px 0;
    border-bottom: 1px solid var(--line);
}
.pp-list li:last-child {
    border-bottom: none;
}
.pp-ent {
    color: var(--cyan) !important;
}
.pp-list-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
}
.pp-list-row li {
    border-bottom: none;
}
.pp-maps {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.pp-maps .pp-list-row {
    justify-content: center;
}
.pp-desc {
    color: var(--muted);
    font-size: .8rem;
}
.pp-rec {
    color: #25d366;
}
.pp-mini {
    color: rgba(255, 255, 255, .3);
    font-size: .7rem;
    margin-top: 8px;
}
.pp-grid-maps {
    display: none;
}
.pp-grid-maps.pp-show {
    display: grid;
    gap: 15px;
}
.pp-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.pp-extra {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}
.pp-extra.sel {
    border-color: var(--cyan);
    background: rgba(45, 226, 255, .1);
}
.pp-extra-ic { font-size: 1.5rem; margin-bottom: 5px; }
.pp-extra-nom { color: #fff; font-size: .85rem; margin-bottom: 3px; }
.pp-extra-pr { color: var(--cyan); font-size: .8rem; }
.pp-resumen {
    background: rgba(45, 226, 255, .05);
    border: 1px solid var(--cyan);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}
.pp-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}
.pp-total {
    border-bottom: none;
    padding: 15px 0 0;
}
.pp-total span:first-child {
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.pp-total span:last-child {
    color: var(--cyan);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
}
.pp-iva {
    color: rgba(255, 255, 255, .3);
    font-size: .75rem;
    margin-top: 10px;
}
.pp-form,
.pp-gracias {
    background: rgba(45, 226, 255, .05);
    border: 1px solid var(--cyan);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 16px;
}
.pp-gracias {
    text-align: center;
}
.pp-check { font-size: 2.5rem; margin-bottom: 10px; }
.pp-gracias h3 { color: var(--cyan); margin-bottom: 10px; }
.pp-gracias p { color: var(--muted); }
.pp-form-title {
    color: var(--cyan);
    font-size: .9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pp-form input,
.pp-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    margin-bottom: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
}
.pp-form input:focus,
.pp-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
}
.pp-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
    cursor: pointer;
}
.pp-rgpd span {
    color: var(--muted);
    font-size: .78rem;
}
.pp-rgpd input {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}
.pp-rgpd a { color: var(--cyan); }
.pp-error {
    color: #ff5c5c;
    font-size: .8rem;
    margin-bottom: 10px;
}
.pp-btn {
    width: 100%;
    padding: 16px;
    background: var(--cyan);
    color: #04222a;
    border: none;
    border-radius: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 10px;
}
.pp-nota {
    color: var(--muted);
    font-size: .8rem;
    text-align: center;
    margin-bottom: 24px;
}
.pp-hidden { display: none; }

.pp-title-h1 {
    color: var(--cyan);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 8px;
}

/* ===== 18. DIAGNÓSTICO ===== */
.dg {
    max-width: 700px;
    margin: 0 auto;
}
.dg h1 {
    color: var(--cyan);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.dg-sub {
    color: var(--muted);
    margin: 8px 0 30px;
}
.dg-title-h1 {
    color: var(--paper);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.dg-barra {
    background: var(--bg2);
    border-radius: 50px;
    height: 6px;
    margin-bottom: 34px;
    overflow: hidden;
}
.dg-barra-in {
    background: var(--cyan);
    height: 6px;
    border-radius: 50px;
    width: 25%;
    transition: width .5s ease;
}
.dg-paso {
    color: var(--cyan);
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.dg-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.dg-opt {
    padding: 15px;
    background: var(--bg2);
    border: 1px solid var(--line);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: .9rem;
    text-align: left;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: border-color .2s ease, background .2s ease;
}
.dg-opt:hover {
    border-color: var(--cyan);
}
.dg-opt.sel {
    background: rgba(45, 226, 255, .15);
    border-color: var(--cyan);
    color: var(--cyan);
}
.dg-wide {
    grid-column: span 2;
}
.dg-label {
    color: var(--muted);
    font-size: .9rem;
    display: block;
    margin-bottom: 8px;
}
.dg-input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background: var(--bg2);
    border: 1px solid var(--line);
    color: #fff;
    border-radius: 10px;
    font-size: .9rem;
    margin-bottom: 18px;
    font-family: 'IBM Plex Sans', sans-serif;
}
.dg-input:focus {
    outline: none;
    border-color: var(--cyan);
}
.dg-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.dg-chip {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 50px;
    cursor: pointer;
    font-size: .85rem;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.dg-chip.sel {
    background: rgba(45, 226, 255, .15);
    border-color: var(--cyan);
    color: var(--cyan);
}
.dg-btn {
    width: 100%;
    padding: 15px;
    background: var(--cyan);
    color: #04222a;
    border: none;
    border-radius: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
}
.dg-note {
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 18px;
}
.dg-center {
    text-align: center;
    margin-top: 14px;
}
.dg-result {
    text-align: center;
    padding: 32px;
    background: rgba(45, 226, 255, .05);
    border: 1px solid var(--cyan);
    border-radius: 15px;
    margin-top: 16px;
}
.dg-res-title {
    color: var(--cyan);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.dg-res-p {
    color: var(--muted);
}
.dg-res-p strong {
    color: #fff;
}
.dg-wa {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .9rem;
}
.dg-hidden {
    display: none;
}
.dg-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
    cursor: pointer;
}
.dg-rgpd input {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}
.dg-rgpd span {
    color: var(--muted);
    font-size: .78rem;
}
.dg-rgpd a {
    color: var(--cyan);
}

/* ===== 19. PROYECTOS REALES ===== */
.pr-wrap {
    max-width: 820px;
    margin: 0 auto;
}
.pr-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg2);
    border: 2px solid var(--cyan);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(45, 226, 255, .25);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 55px rgba(45, 226, 255, .55);
}
.pr-img {
    flex: 1 1 340px;
    background: #000;
    overflow: hidden;
}
.pr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.pr-info {
    flex: 1 1 340px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pr-tag {
    color: var(--cyan);
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.pr-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.pr-info p {
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 18px;
}
.pr-btn {
    align-self: flex-start;
    padding: 11px 26px;
    background: var(--cyan);
    color: #04222a;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    border-radius: 50px;
}

/* ===== 20. DISEÑOS A MEDIDA (demos) ===== */
.dm-wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.dm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.dm-card {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 15px;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.dm-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: 0 0 25px rgba(45, 226, 255, .3);
}
.dm-frame {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.dm-frame iframe {
    width: 1400px;
    height: 900px;
    border: none;
    transform: scale(0.35);
    transform-origin: top center;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -700px;
}
.dm-info {
    padding: 20px;
}
.dm-tag {
    color: var(--cyan);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.dm-info h3 {
    color: #fff;
    font-size: 1rem;
    margin: 8px 0;
}
.dm-info p {
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 15px;
}
.dm-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .75rem;
    border-radius: 50px;
    transition: background .2s ease, color .2s ease;
}
.dm-btn:hover {
    background: var(--cyan);
    color: #04222a;
}

/* ===== 21. HUB CARDS (artículos) ===== */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 34px;
}
.hub-card {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 46px 30px;
    text-align: center;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hub-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 0 40px rgba(45, 226, 255, .25);
}
.hub-card h3 {
    color: var(--cyan);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.hub-card p {
    color: var(--muted);
    margin: 0;
}

body:has(.hub-grid) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body:has(.hub-grid) .page-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== 22. CONTACTO ===== */
.ct {
    max-width: 900px;
    margin: 0 auto;
}
.ct h1 {
    color: var(--cyan);
    font-size: clamp(2rem, 4.5vw, 3rem);
}
.ct-sub {
    color: var(--muted);
    margin: 8px 0 34px;
}
.ct-title-h1 {
    color: var(--paper);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.ct-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}
.ct-form input,
.ct-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding:14px;
    margin-bottom: 12px;
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
}
.ct-form input:focus,
.ct-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
}
.ct-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
    cursor: pointer;
    line-height: 1.4;
}
.ct-rgpd input {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}
.ct-rgpd span {
    color: var(--muted);
    font-size: .8rem;
}
.ct-rgpd a {
    color: var(--cyan);
}
.ct-error {
    color: #ff5c5c;
    font-size: .85rem;
    margin-bottom: 10px;
}
.ct-btn {
    width: 100%;
    padding: 15px;
    background: var(--cyan);
    color: #04222a;
    border: none;
    border-radius: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}
.ct-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ct-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color .2s ease;
}
.ct-card:hover {
    border-color: var(--cyan);
}
.ct-ic {
    font-size: 1.5rem;
}
.ct-ic svg {
    width: 26px;
    height: 26px;
}
.ct-card b {
    color: #fff;
    display: block;
}
.ct-card small {
    color: var(--muted);
}
.ct-gracias {
    text-align: center;
    padding: 40px;
    background: rgba(45, 226, 255, .05);
    border: 1px solid var(--cyan);
    border-radius: 20px;
}
.ct-check {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.ct-gracias h3 {
    color: var(--cyan);
    margin-bottom: 8px;
}
.ct-gracias p {
    color: var(--muted);
}
.ct-hidden {
    display: none;
}
.ct-form textarea {
    resize: none;
    height: 130px;
}

/* ===== 23. LEGAL ===== */
.legal {
    max-width: 800px;
    margin: 0 auto;
}
.legal h1, .legal h2, .legal h3 {
    color: var(--cyan);
    margin: 24px 0 12px;
}
.legal p, .legal li {
    color: var(--muted);
    margin-bottom: 12px;
}
.legal a {
    color: var(--cyan);
}
.legal ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

/* ===== 24. BLOG ===== */
.com-content-category-blog {
    max-width: 1100px;
    margin: 0rem auto 4rem;
    padding: 0 1.5rem;
    overflow: visible;
}

.com-content-category-blog__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.com-content-category-blog__items.items-leading {
    grid-template-columns: 1fr;
}

.com-content-category-blog__item {
    background: #1e1e24;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 2px 12px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.2);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
    overflow: visible;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    counter-increment: blog-counter;
}

.com-content-category-blog__items {
    overflow: visible;
    padding: 0.5rem;
}

.com-content-category-blog__item::before {
    content: counter(blog-counter, decimal-leading-zero);
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--cyan);
    opacity: .12;
    line-height: 1;
    pointer-events: none;
}

.com-content-category-blog {
    counter-reset: blog-counter;
}

.com-content-category-blog__item:hover {
    border-color: rgba(255,255,255,.15);
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(255,255,255,.25), 0 2px 12px rgba(255,255,255,.2);
}

.com-content-category-blog__item .page-header {
    margin-bottom: 1rem;
}

.com-content-category-blog__item .page-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.com-content-category-blog__item .page-header h2 a {
    color: var(--paper);
    transition: color .25s;
}

.com-content-category-blog__item .page-header h2 a:hover {
    color: var(--cyan);
}

.com-content-category-blog__item p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

.com-content-category-blog__item .readmore {
    margin-top: 1.5rem;
}

.com-content-category-blog__item .readmore a {
    display: inline-block;
    color: var(--cyan);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    border-bottom: 1px solid var(--cyan);
    padding-bottom: 2px;
    transition: opacity .2s;
}

.com-content-category-blog__item .readmore a:hover {
    opacity: .6;
}

.com-content-category-blog__navigation {
    display: none;
}

.items-more {
    display: none;
}

.com-content-article .page-header h1 {
    display: none;
}

.com-content-category-blog__item h1 {
    display: none;
}

.com-content-article__body .blog-title-h1 {
    color: var(--paper);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.com-content-category-blog__item .blog-title-h1 {
    display: none;
}

.pagenavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.pagenavigation .pagination {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.pagenavigation a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    border: 1px solid rgba(45,226,255,.3);
    padding: 0.6rem 1.2rem;
    transition: border-color .25s, background .25s, gap .25s;
    position: relative;
}

.pagenavigation a:hover {
    border-color: var(--cyan);
    background: rgba(45,226,255,.06);
    gap: 0.9rem;
}

.pagination__wrapper .pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}
.pagination__wrapper .page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan);
    background: transparent;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    border: 1px solid rgba(45,226,255,.3);
    padding: 0.6rem 1.2rem;
    transition: border-color .25s, background .25s;
}
.pagination__wrapper .page-link:hover {
    border-color: var(--cyan);
    background: rgba(45,226,255,.06);
}
.pagination__wrapper .page-item.active .page-link {
    background: var(--cyan);
    color: #0a0a0b;
    border-color: var(--cyan);
}
.com-content-category-blog__counter {
    color: var(--muted);
    font-size: .8rem;
}

.pagenavigation a[rel="prev"]::before {
    content: "←";
    font-size: 1rem;
    transition: transform .25s;
}

.pagenavigation a[rel="prev"]:hover::before {
    transform: translateX(-4px);
}

.pagenavigation a[rel="next"]::after {
    content: "→";
    font-size: 1rem;
    transition: transform .25s;
}

.pagenavigation a[rel="next"]:hover::after {
    transform: translateX(4px);
}

.pagenavigation .visually-hidden {
    display: none;
}

/* ===== 25. Cómo trabajo - detalii hover ===== */
.process-wrap {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.steps {
    flex: 0 0 55%;
}

.step {
    cursor: pointer;
}

.step-detail {
    flex: 1;
    background: #1e1e24;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(255,255,255,.25), 0 2px 12px rgba(255,255,255,.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.step-detail.visible {
    opacity: 1;
    visibility: visible;
}

/* ===== 26. Contacto - iconos redes sociales =====  */
.ct-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.ct-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .3s, box-shadow .3s;
}

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

.ct-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(45, 226, 255, .3);
}

/* Fix doar pentru Proyectos, care are puțin conținut */
body:has(.proyectos-hub) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-inner:has(.proyectos-hub) {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== 27. Faq =====  */
.faq-page { max-width: 700px; margin: 0 auto; padding: 3rem 1.5rem; }
.faq-item {
	border-bottom: 1px solid rgba(255,255,255,.08);
	padding: 0;
	margin-bottom: 0;
	transition: border-color .25s;
}
.faq-item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--paper);
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	padding: 1.1rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
	color: var(--cyan);
	font-size: 1.4rem;
	transition: transform .25s;
	flex-shrink: 0;
	margin-left: 1rem;
}
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item .faq-a {
	color: var(--muted);
	font-size: .92rem;
	line-height: 1.7;
	padding-bottom: 1.2rem;
	max-width: 700px;
}
.faq-top {
    text-align: center;
    margin-bottom: 1.2rem;
}
.faq-top h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    margin-bottom: 10px;
}
.faq-top p {
    color: var(--muted);
}

/* ===== 28. RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 34px; padding: 50px 28px; }
    .hero-visual { display: none; }
    .services { grid-template-columns: 1fr; gap: 24px; }
    .services h2 { position: static; }
    .section-top { flex-direction: column; align-items: flex-start; }
    .section-top p { text-align: left; }
    .proj-grid { grid-template-columns: repeat(2, 1fr); }
    .tiers { grid-template-columns: 1fr; }
    .maint-row { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 22px; }
    .dm-grid { grid-template-columns: 1fr; }
    .ct-wrap { grid-template-columns: 1fr; }
    .hamburger {
        display: flex !important;
    }
    .mobile-nav {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(10, 10, 11, 0.75) !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 120px;
        gap: 32px;
        font-size: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease;
        z-index: 9999;
    }
    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
    }
    .mobile-nav.open .nav-close {
        display: block;
    }

    .process, .about { padding-top: 40px; padding-bottom: 40px; }

    .pricing { padding-bottom: 40px; }

    footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
    footer .footer-legal { order: 1; }
    footer .footer-social { order: 2; }
    footer > div:first-child { order: 3; }
    .fab {
        gap: 14px;
        right: 14px;
        bottom: 14px;
    }
    .fab a {
        width: 42px;
        height: 42px;
    }
    .fab a svg {
        width: 19px;
        height: 19px;
    }
    .fab-p {
        font-size: 1rem;
    }
}
@media (max-width: 540px) {
    .proj-grid { grid-template-columns: 1fr; }

}

@media (max-width: 900px) {
    .pp-form input,
    .pp-form textarea,
    .dg-input,
    .ct-form input,
    .ct-form textarea {
        font-size: 16px;
    }
}

