:root {
    --bg: #f7f5f2;
    --bg2: #ffffff;
    --surface: #ffffff;
    --surface2: #f0ede8;
    --black: #0a0a0a;
    --black2: #141414;
    --black3: #1f1f1f;
    --black-soft: #2e2e2e;
    --on-black: #ffffff;
    --on-black-muted: rgba(255, 255, 255, 0.72);
    --blue: #1a4480;
    --blue2: #2359a8;
    --gold: #c8922a;
    --gold2: #e8b84b;
    --text: var(--black2);
    --muted: #5c5c5c;
    --border: #e2ddd7;
    --border2: rgba(10, 10, 10, 0.12);
    --nav-h: 72px;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-main {
    flex: 1;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--black);
    font-size: 12.5px;
    letter-spacing: 0.03em;
    color: var(--on-black-muted);
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 9px 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-item svg {
    color: var(--gold2);
    flex-shrink: 0;
}

.topbar-item a {
    color: var(--on-black-muted);
    text-decoration: none;
    transition: color .2s;
}

.topbar-item a:hover {
    color: var(--on-black);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-black-muted);
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.social-btn:hover {
    border-color: var(--gold2);
    color: var(--gold2);
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(10, 10, 10, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-img--footer {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    transition: color .25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-active,
.nav-links a[aria-current="page"] {
    color: var(--black);
}

.nav-links a.nav-active:not(.nav-cta)::after,
.nav-links a[aria-current="page"]:not(.nav-cta)::after {
    width: 100%;
}

.nav-cta {
    background: var(--black) !important;
    color: var(--on-black) !important;
    padding: 9px 22px;
    border-radius: 2px;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--black3) !important;
    color: var(--on-black) !important;
}

.nav-cta::after {
    display: none !important;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h) - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: var(--bg);
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, #ececec 0%, #d4d4d4 100%);
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-bg-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(10, 10, 10, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 1;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: brightness(0.9) contrast(1.05) saturate(0.85);
}

.hero-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, var(--bg) 0%, rgba(247, 245, 242, 0.15) 25%, transparent 60%);
    z-index: 3;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp .6s .2s forwards;
}

.hero-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.93;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: -0.01em;
    max-width: 560px;
    opacity: 0;
    animation: fadeUp .6s .38s forwards;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-subtitle {
    margin-top: 1.4rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp .6s .56s forwards;
}

.hero-actions {
    margin-top: 2.2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .6s .72s forwards;
}

.btn-primary {
    background: var(--black);
    color: var(--on-black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    transition: background .25s, transform .2s;
    border: 2px solid var(--black);
}

.btn-primary:hover {
    background: var(--black3);
    border-color: var(--black3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    transition: border-color .25s, color .25s, transform .2s;
}

.btn-secondary:hover {
    border-color: var(--black);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp .6s .88s forwards;
    flex-wrap: wrap;
}

.hero-stat {
    border-left: 3px solid var(--gold);
    padding-left: 14px;
}

.hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTIONS ── */
section {
    padding: 6rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--black);
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

/* ── ABOUT ── */
.about {
    background: var(--bg2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about-frame {
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    border: 2px solid var(--gold);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
}

.about-img-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.about-badge {
    position: absolute;
    bottom: -1.2rem;
    right: -1.2rem;
    z-index: 2;
    background: var(--black);
    color: var(--on-black);
    padding: 1.1rem 1.5rem;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.25);
}

.about-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 2px;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.about-body p {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.8;
}

.about-body p strong {
    color: var(--text);
    font-weight: 500;
}

.about-quote {
    border-left: 3px solid var(--gold);
    padding-left: 1.2rem;
    margin: 0.5rem 0;
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    color: var(--black-soft);
    line-height: 1.7;
}

/* ── ABOUT PAGE ── */
.about-page {
    background: var(--bg2);
    padding: 5rem 0;
}

.about-page-header {
    margin-bottom: 3.5rem;
}

.about-page-header .section-title {
    margin-top: 0.5rem;
}

.about-block {
    margin-bottom: 3rem;
}

.about-block-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1;
}

.about-block-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 820px;
}

.about-block-body p,
.about-block p {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.8;
}

.about-block-body p strong,
.about-block p strong {
    color: var(--text);
    font-weight: 500;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-block--card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: 2px;
    padding: 2rem 1.8rem;
    margin-bottom: 0;
}

.clients {
    margin-bottom: 3rem;
}

.clients .about-block-title {
    margin-bottom: 0.6rem;
}

.clients-hint {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 1.8rem;
    max-width: 640px;
}

/* ── OUR WORK (galería de proyectos) ── */
.our-work {
    margin-bottom: 3rem;
}

.our-work .about-block-title {
    margin-bottom: 0.6rem;
}

.our-work-hint {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 1.8rem;
    max-width: 640px;
}

.our-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.our-work-item {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid var(--border);
    background: var(--surface2);
    box-shadow: 0 8px 28px rgba(10, 10, 10, 0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.our-work-item:hover {
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.14);
    transform: translateY(-3px);
}

.our-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.our-work-item:hover img {
    transform: scale(1.05);
}

/* ── 2D CLIENT CAROUSEL (marquee infinito) ── */
.carousel-2d {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0 1.5rem;
    --scroll-duration: 32s;
    --card-w: 240px;
    --card-h: 130px;
    --gap: 1.5rem;
}

.carousel-2d-viewport {
    overflow: hidden;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.carousel-2d-track {
    display: flex;
    width: max-content;
    animation: carousel2dScroll var(--scroll-duration) linear infinite;
    will-change: transform;
}

@keyframes carousel2dScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.carousel-2d-group {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
    padding-right: var(--gap);
}

.carousel-2d-item {
    flex-shrink: 0;
}

.carousel-2d-card {
    width: var(--card-w);
    height: var(--card-h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 1.4rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 245, 242, 0.95) 100%);
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 12px;
    box-shadow:
        0 12px 40px rgba(10, 10, 10, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.carousel-2d-item:hover .carousel-2d-card {
    box-shadow:
        0 20px 50px rgba(10, 10, 10, 0.2),
        0 0 24px rgba(200, 146, 42, 0.25);
    transform: scale(1.04);
}

.carousel-2d-card img {
    max-width: 100%;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(10, 10, 10, 0.08));
}

@media (prefers-reduced-motion: reduce) {
    .carousel-2d {
        --scroll-duration: 80s;
    }
}

.about-page-cta {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }

    .our-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {
    .carousel-2d {
        --card-w: 190px;
        --card-h: 108px;
        --scroll-duration: 26s;
        --gap: 1.15rem;
    }

    .carousel-2d-card img {
        max-height: 68px;
    }

    .our-work-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SERVICES ── */
.services {
    background: var(--bg);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    border-radius: 2px;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.service-card:hover {
    border-top-color: var(--black);
    box-shadow: 0 8px 32px rgba(10, 10, 10, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #ebebeb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--black);
    transition: background .3s, color .3s;
}

.service-card:hover .service-icon {
    background: var(--black);
    color: var(--on-black);
}

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.service-num {
    position: absolute;
    bottom: 0.8rem;
    right: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(10, 10, 10, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color .3s;
}

.service-card:hover .service-num {
    color: rgba(10, 10, 10, 0.09);
}

/* ── SERVICIOS PAGE ── */
.servicios-page section {
    padding: 4.5rem 0;
}

.svc-general {
    background: var(--bg);
}

.svc-head {
    text-align: center;
    margin-bottom: 3rem;
}

.svc-head-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.svc-head-sub {
    font-size: 1.05rem;
    color: var(--muted);
}

.svc-sectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svc-sector {
    text-align: center;
}

.svc-sector-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1.25rem;
    background: var(--surface2);
}

.svc-sector-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-sector-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.6rem;
}

.svc-sector-desc {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 320px;
    margin: 0 auto;
}

.svc-catalog {
    background: var(--bg2);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.svc-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 3rem;
    align-items: start;
}

.svc-catalog-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.svc-catalog-list {
    list-style: disc;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.svc-catalog-list li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.55;
}

.svc-pm {
    padding: 0;
    background: var(--bg);
}

.svc-pm-intro-wrap {
    background: var(--black3);
    color: var(--on-black);
    padding: 4.5rem 0 3.5rem;
}

.svc-pm-intro {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.svc-pm-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    color: var(--on-black);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.svc-pm-lead {
    font-size: 15px;
    line-height: 1.8;
    color: var(--on-black-muted);
}

.svc-pm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: -2rem;
    padding-bottom: 4.5rem;
}

.svc-pm-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(10, 10, 10, 0.08);
}

.svc-pm-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface2);
}

.svc-pm-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-pm-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--black);
    padding: 1rem 1.1rem 0.35rem;
}

.svc-pm-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    padding: 0 1.1rem 1.25rem;
}

.servicios-page-cta {
    padding: 0 0 5rem;
    text-align: center;
}

/* ── CTA ── */
.cta {
    background: linear-gradient(135deg, var(--black) 0%, var(--black3) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.cta::after {
    content: 'MXE';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.04em;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold2);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.cta-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold2);
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    max-width: 500px;
}

.cta-title em {
    font-style: normal;
    color: var(--gold2);
}

.btn-light {
    background: var(--on-black);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 34px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    transition: background .25s, transform .2s;
}

.btn-light:hover {
    background: var(--gold2);
    color: var(--black);
    transform: translateY(-2px);
}

/* ── QUOTE FORM ── */
.quote {
    background: var(--bg2);
    padding: 5rem 0 4rem;
}

.quote-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--black);
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    max-width: 720px;
}

.quote-form {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 0.5rem;
}

.quote-field label {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.quote-required {
    color: var(--black);
}

.quote-field input,
.quote-field textarea {
    border: none;
    background: transparent;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--text);
    padding: 0.25rem 0 0;
    width: 100%;
    outline: none;
    resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: var(--muted);
}

.quote-field input:focus,
.quote-field textarea:focus {
    outline: none;
}

.quote-field:focus-within {
    border-bottom-color: var(--gold);
}

.quote-field input:invalid:not(:placeholder-shown):not(:focus) {
    color: #b33;
}

.quote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.quote-submit {
    margin-top: 0;
    background: var(--black);
    color: var(--on-black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 3rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.quote-submit:hover {
    background: var(--black3);
    transform: translateY(-2px);
}

.quote-submit:active {
    transform: translateY(0);
}

.quote-submit--wa {
    background: #25d366;
    color: #fff;
}

.quote-submit--wa:hover {
    background: #1da851;
}

@media (max-width: 600px) {
    .quote-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── CONTACT STRIP ── */
.contact-strip {
    background: var(--surface2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--border);
}

.contact-item {
    background: var(--bg2);
    padding: 2rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #ebebeb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 14.5px;
    color: var(--text);
}

.contact-value a {
    color: var(--black);
    text-decoration: none;
    transition: color .2s;
}

.contact-value a:hover {
    color: var(--gold);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    padding: 2.2rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-copy {
    font-size: 13px;
    color: var(--on-black-muted);
}

.footer-links {
    display: flex;
    gap: 1.6rem;
}

.footer-links a {
    font-size: 12px;
    color: var(--on-black-muted);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--gold2);
}

/* ── WHATSAPP BUBBLE ── */
.wa-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    font-family: 'Barlow', sans-serif;
}

.wa-panel {
    width: min(320px, calc(100vw - 2.5rem));
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(10, 10, 10, 0.18);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity .25s, transform .25s, visibility .25s;
}

.wa-widget--open .wa-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-panel-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: color .2s, background .2s;
}

.wa-panel-close:hover {
    color: var(--black);
    background: var(--surface2);
}

.wa-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem 1rem 1rem;
    background: #075e54;
    color: var(--on-black);
}

.wa-panel-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-panel-meta strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.wa-panel-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.wa-panel-status::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #25d366;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.wa-panel-body {
    padding: 1rem;
}

.wa-panel-form {
    margin-top: 0.85rem;
}

.wa-panel-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.wa-panel-input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 72px;
    margin-bottom: 0.75rem;
    background: var(--bg);
    color: var(--text);
}

.wa-panel-input:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.wa-panel-form .wa-panel-cta {
    width: 100%;
    margin: 0;
    border: none;
    cursor: pointer;
}

.wa-panel-msg {
    display: inline-block;
    max-width: 100%;
    margin: 0;
    padding: 0.65rem 0.85rem;
    background: #e7f7ed;
    border-radius: 0 12px 12px 12px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
}

.wa-panel-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    background: #25d366;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: background .2s, transform .2s;
}

.wa-panel-cta:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.wa-fab {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform .2s, box-shadow .2s, background .2s;
}

.wa-fab:hover {
    background: #1da851;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.wa-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: waPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.wa-widget--open .wa-fab-pulse {
    animation: none;
    opacity: 0;
}

.wa-fab-icon--close {
    display: none;
}

.wa-widget--open .wa-fab-icon:not(.wa-fab-icon--close) {
    display: none;
}

.wa-widget--open .wa-fab-icon--close {
    display: block;
}

.wa-widget--open .wa-fab {
    background: var(--black3);
    box-shadow: 0 4px 16px rgba(10, 10, 10, 0.25);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s, transform .65s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

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

    .svc-sectors,
    .svc-catalog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-pm-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .nav-links {
        display: none;
    }
}

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

    .svc-sectors,
    .svc-catalog-grid,
    .svc-pm-grid {
        grid-template-columns: 1fr;
    }

    .svc-pm-grid {
        margin-top: 1.5rem;
    }

    .topbar-right {
        display: none;
    }

    .hero-img,
    .hero-img-overlay {
        display: none;
    }

    .hero-bg-shape,
    .hero-bg-dots {
        display: none;
    }

    .wa-widget {
        right: 1rem;
        bottom: 1rem;
    }

    .wa-fab {
        width: 56px;
        height: 56px;
    }
}
