/* ============================================================
   TOKENS & RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important;
}

:root {
    --white: #ffffff;
    --off: #f7f7f5;
    --ink: #0e0e0e;
    --muted: #6b6b6b;
    --accent: #1a1a1a;
    --line: #e4e4e0;
    --tag-bg: #efefed;
    --hero-from: #fdf6ee;
    --hero-to: #e8edf8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slide {
    to {
        left: 200%;
    }
}

@keyframes hint-pulse {

    0%,
    100% {
        opacity: .4;
    }

    50% {
        opacity: .9;
    }
}

@keyframes dot-blink {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

/* ============================================================
   REVEAL / STAGGER UTILITIES
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.stagger.visible>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: .05s;
}

.stagger.visible>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .15s;
}

.stagger.visible>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .25s;
}

.stagger.visible>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .35s;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}

nav.scrolled {
    border-bottom-color: var(--line);
}


.nav-logo img {
    width: 250px;
    height: auto;
}

.nav-logo span {
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .01em;
    transition: color .2s;
}

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

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    background: var(--ink);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: opacity .2s;
}

.nav-cta:hover {
    opacity: .75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    background: var(--ink);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: opacity .2s;
}

.btn-primary:hover {
    opacity: .75;
}

.btn-ghost {
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    transition: opacity .2s;
}

.btn-ghost:hover {
    opacity: .55;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section {
    padding: 120px 48px;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    max-width: 48px;
    height: 1px;
    background: var(--line);
}

.tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--tag-bg);
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ============================================================
   HERO — shared
   ============================================================ */
.hero {
    display: grid;
    grid-template-rows: 1fr auto;
    padding-top: 64px;
    background: linear-gradient(160deg, var(--hero-from) 0%, var(--hero-to) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .35;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 48px 80px;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1.03;
    letter-spacing: -.03em;
    color: var(--ink);
}

.hero-headline em {
    font-style: italic;
    color: var(--muted);
}

.hero-sub {
    margin-top: 32px;
    max-width: 420px;
    font-size: 17px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
}

.hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--muted);
}

/* Globe / 3D wrap — shared */
.hero-globe-wrap,
.hero-ship-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

#hero-globe,
#hero-cap,
#hero-ship {
    display: block;
    width: 100%;
    height: 480px;
    cursor: grab;
}

.globe-hint {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    animation: hint-pulse 2.8s ease-in-out infinite;
}

.globe-hint::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    animation: dot-blink 2.8s ease-in-out infinite;
}

.globe-live-tag {
    position: absolute;
    top: 24px;
    right: 8px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}

.globe-live-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0e0e0e;
    animation: dot-blink 2s ease-in-out infinite;
}

.hero-scroll {
    padding: 0 48px 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--ink);
    animation: slide 2s ease-in-out infinite;
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos-strip {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 48px;
    display: flex;
    align-items: center;
}

.logos-label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    margin-right: 48px;
}

.logos-list {
    display: flex;
    gap: 48px;
    align-items: center;
    overflow: hidden;
}

.logo-item {
    font-family: 'Instrument Serif', serif;
    font-size: 17px;
    color: #c0c0bc;
    white-space: nowrap;
    letter-spacing: -.01em;
}

/* ============================================================
   SERVICES — index.html & it-solutions.html
   ============================================================ */
.services {
    background: var(--white);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.services-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.services-title em {
    font-style: italic;
    color: var(--muted);
}

.services-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 340px;
    align-self: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.service-card {
    padding: 48px 40px 48px 0;
    border-right: 1px solid var(--line);
    transition: background .25s;
    cursor: default;
}

.service-card:nth-child(2) {
    padding-left: 40px;
}

.service-card:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 40px;
}

.service-card:hover {
    background: var(--off);
}

.service-num {
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 32px;
    font-weight: 500;
}

.service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--ink);
    fill: none;
    stroke-width: 1.2;
}

.service-name {
    font-family: 'Instrument Serif', serif;
    font-size: 26px;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.service-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

.service-tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================================
   NUMBERS — index.html
   ============================================================ */
.numbers {
    background: var(--ink);
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 80px 48px;
}

.number-block {
    padding: 32px 40px 32px 0;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.number-block:nth-child(2),
.number-block:nth-child(3) {
    padding-left: 40px;
}

.number-block:last-child {
    border-right: none;
    padding-left: 40px;
    padding-right: 0;
}

.number-val {
    font-family: 'Instrument Serif', serif;
    font-size: 56px;
    letter-spacing: -.03em;
    line-height: 1;
}

.number-val sup {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 300;
    vertical-align: super;
}

.number-label {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

/* ============================================================
   HOW — index.html
   ============================================================ */
#proceso.how {
    padding-top: 40px;
}

.how .reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-header {
    margin-bottom: 40px;
}

.how-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -.02em;
    line-height: 1.1;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.how-title em {
    font-style: italic;
    color: var(--muted);
}

/* ============================================================
   STEPS — shared (index, consulting, imports)
   ============================================================ */
.how-steps,
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.step {
    padding: 48px 40px 48px 0;
    border-right: 1px solid var(--line);
}

.step:nth-child(2),
.step:nth-child(3) {
    padding-left: 40px;
}

.step:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 40px;
}

.step-num {
    font-family: 'Instrument Serif', serif;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
}

.step-name {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    letter-spacing: -.01em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.step-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   PROCESS — consulting.html & imports.html
   ============================================================ */
.process {
    background: var(--white);
}

.process-header {
    margin-bottom: 80px;
}

.process-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.process-title em {
    font-style: italic;
    color: var(--muted);
}

/* ============================================================
   APPROACH — consulting.html
   ============================================================ */
.approach {
    background: var(--off);
}

.approach-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.approach-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.approach-title em {
    font-style: italic;
    color: var(--muted);
}

.approach-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    padding-top: 12px;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.pillar {
    padding: 48px 40px 48px 0;
    border-right: 1px solid var(--line);
}

.pillar:nth-child(2) {
    padding-left: 40px;
}

.pillar:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 40px;
}

.pillar-num {
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 32px;
    font-weight: 500;
}

.pillar-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--ink);
    fill: none;
    stroke-width: 1.2;
}

.pillar-name {
    font-family: 'Instrument Serif', serif;
    font-size: 26px;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.pillar-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

.pillar-tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================================
   INDUSTRIES — consulting.html
   ============================================================ */
.industries {
    background: var(--white);
}

.industries-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.industries-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.industries-title em {
    font-style: italic;
    color: var(--muted);
}

.industries-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    padding-top: 12px;
}

.industry-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.industry-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: background .2s;
}

.industry-item:hover {
    background: var(--off);
}

.industry-num {
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted);
    font-weight: 500;
    padding-top: 6px;
}

.industry-name {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    letter-spacing: -.01em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.industry-content .industry-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   TESTIMONIAL — consulting.html & imports.html
   ============================================================ */
.testimonial-band {
    background: var(--ink);
    color: var(--white);
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

.testimonial-quote {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-bottom: 24px;
    color: var(--white);
}

.testimonial-author {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
}

.testimonial-author strong {
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

/* ============================================================
   ORIGINS — imports.html
   ============================================================ */
.origins {
    background: var(--off);
}

.origins-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.origins-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.origins-title em {
    font-style: italic;
    color: var(--muted);
}

.origins-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    padding-top: 12px;
}

.origins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.origin-item {
    padding: 48px 40px 48px 0;
    border-right: 1px solid var(--line);
}

.origin-item:nth-child(2) {
    padding-left: 40px;
}

.origin-item:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 40px;
}

.origin-region {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.origin-name {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.origin-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   APP PANEL — it-solutions.html
   ============================================================ */
.app-panel {
    isolation: isolate;
}

.app-panel *,
.app-panel *::before,
.app-panel *::after {
    box-sizing: border-box;
}

.app-panel .app {
    display: flex;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    color: white;
    font-family: sans-serif;
}

.app-panel .sidebar {
    width: 240px;
    background: #050505;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-panel .nav-logo {
    font-size: 22px;
    font-weight: bold;
}

.app-panel .status {
    font-size: 12px;
    opacity: 0.7;
}

.app-panel .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.app-panel .menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-panel .menu-item {
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.app-panel .sidebar:hover .menu-item {
    opacity: 0.8;
}

.app-panel .menu-item:hover {
    background: #111;
    opacity: 1;
    transform: translateX(5px);
}

.app-panel .main {
    flex: 1;
    padding: 25px;
}

.app-panel .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-panel .user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-panel .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.app-panel .card {
    background: #050505;
    padding: 15px;
    border-radius: 10px;
}

.app-panel .card h3 {
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
}

.app-panel .card strong {
    font-size: 22px;
    display: block;
    margin: 5px 0;
}

.app-panel .card p {
    font-size: 11px;
    opacity: 0.5;
}

.app-panel .chart-box {
    margin-top: 20px;
    background: #050505;
    padding: 15px;
    border-radius: 10px;
}

.app-panel .chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.app-panel canvas {
    width: 100%;
    height: 180px;
    background: #000;
    display: block;
}

.app-panel .chart-desc {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 10px;
}

.app-panel button {
    margin-top: 15px;
    padding: 10px;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.service-image-large {
    overflow: hidden;
    border-radius: 12px;
}

/* ============================================================
   CTA BAND — shared
   ============================================================ */
.cta-band {
    background: var(--white);
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid var(--line);
}

.cta-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -.03em;
}

.cta-title em {
    font-style: italic;
    color: var(--muted);
}

.cta-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.cta-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 380px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ============================================================
   FOOTER — shared
   ============================================================ */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .4);
    padding: 56px 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    font-size: 13px;
}

.footer-brand {
    grid-column: 1 / 3;
}

.footer-logo {
    font-family: 'Instrument Serif', serif;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

.footer-logo span {
    font-style: italic;
}

.footer-tagline {
    font-weight: 300;
    line-height: 1.6;
    max-width: 280px;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {

    /* Nav */
    nav {
        padding: 0 24px;
    }

    .nav-cta {
        font-size: 12px;
        padding: 7px 14px;
    }

    .nav-links {
        display: none;
    }

    /* Hero */
    .hero-globe-wrap,
    .hero-ship-wrap {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 0 24px 40px;
    }

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

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

    .hero-sub {
        max-width: 100%;
    }

    .hero-scroll {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Sections */
    section {
        padding: 60px 24px;
    }

    /* Logos */
    .logos-strip {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .logos-label {
        margin-right: 0;
    }

    .logos-list {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Services */
    .services-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-desc {
        max-width: 100%;
        text-align: center;
    }

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

    .service-card {
        border-right: none;
        border-top: 1px solid var(--line);
        padding: 40px 0 !important;
    }

    /* App panel */
    .app-panel .app {
        flex-direction: column;
        height: auto;
    }

    .app-panel .sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 16px;
    }

    .app-panel .menu {
        flex-direction: row;
        gap: 12px;
    }

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

    /* Numbers */
    .numbers {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px;
    }

    .number-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 28px 16px;
    }

    .number-block:nth-child(3),
    .number-block:nth-child(4) {
        border-bottom: none;
    }

    /* How */
    #proceso.how {
        padding: 40px 24px 60px;
    }

    .how .reveal {
        width: 100%;
        align-items: center;
    }

    .how-header {
        width: 100%;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
        text-align: center;
        padding: 0;
    }

    .how-title {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }

    /* Steps */
    .how-steps,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .step {
        border-right: none;
        border-top: 1px solid var(--line);
        padding: 40px 0 !important;
    }

    /* Approach */
    .approach-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Pillars */
    .pillars {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .pillar {
        border-right: none;
        border-top: 1px solid var(--line);
        padding: 40px 0 !important;
    }

    /* Industries */
    .industries-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .industry-item {
        grid-template-columns: 48px 1fr;
        gap: 20px;
    }

    /* Testimonial */
    .testimonial-band {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 60px 24px;
    }

    /* Origins */
    .origins-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .origins-grid {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .origin-item {
        border-right: none;
        border-top: 1px solid var(--line);
        padding: 40px 0 !important;
    }

    /* Process */
    .process-header {
        margin-bottom: 40px;
    }

    /* CTA */
    .cta-band {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    /* Footer */
    footer {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .custom-cursor {
        display: none;
    }

    .numbers {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px;
        overflow: hidden;
    }

    .number-block {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 28px 16px !important;
        min-width: 0;
        overflow: hidden;
        text-align: center;
    }

    .number-block:nth-child(3),
    .number-block:nth-child(4) {
        border-bottom: none;
    }

    .number-val {
        font-size: clamp(36px, 10vw, 56px);
        word-break: break-all;
    }

    .nav-logo img {
        width: 190px;
        height: auto;
    }


}