/* =============================================
   PORTAFOLIO.CSS v6.0 — Arcadian Support MX
   GPU-only transitions, contraste AA, 60 fps.
   ============================================= */
.text-white-force { color: #ffffff !important; }
.text-light-force { color: #cbd5e1 !important; }
.section-padding { padding: 90px 10%; }
.text-center     { text-align: center; }
.section-title {
    color: var(--text-title, #0f172a);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.sec-desc {
    color: var(--text-p, #64748b);
    margin-bottom: 44px;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--arcadian-blue, #2a6ef2);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity   0.7s cubic-bezier(0.33,1,0.68,1),
        transform 0.7s cubic-bezier(0.33,1,0.68,1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* =============================================
   HERO
   ============================================= */
.hero-portafolio {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(160deg, #060d1f 0%, #0a1530 45%, #0e1f5a 100%);
    display: flex;
    align-items: center;
    padding: 130px 10% 80px;
    overflow: hidden;
}
.hero-port-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42,110,242,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,110,242,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 80% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 80% 50%, black 0%, transparent 70%);
    pointer-events: none;
}
.hero-portafolio::after {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42,110,242,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.hero-port-stripe {
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--arcadian-blue, #2a6ef2), transparent);
    border-radius: 0 4px 4px 0;
}
.hero-port-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
    animation: hero-in 0.9s cubic-bezier(0.33,1,0.68,1) both;
}
@keyframes hero-in {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-port-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.6);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-port-pill-dot {
    width: 7px; height: 7px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%,100% { box-shadow: 0 0 0 0   rgba(16,185,129,0.6); }
    50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0);   }
}
.hero-port-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.hero-port-accent {
    color: var(--arcadian-gold, #f59e0b);
}
.hero-port-content > p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 620px;
}
.hero-port-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}
.btn-port-primary {
    background: var(--arcadian-blue, #2a6ef2);
    color: #fff;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--arcadian-blue, #2a6ef2);
    transition:
        transform  0.22s cubic-bezier(0.33,1,0.68,1),
        box-shadow 0.22s ease,
        background 0.2s ease;
}
.btn-port-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(42,110,242,0.38);
    background: #1e5fd4;
    border-color: #1e5fd4;
}
.btn-port-ghost {
    background: transparent;
    color: rgba(255,255,255,0.75);
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.18);
    transition:
        transform     0.22s cubic-bezier(0.33,1,0.68,1),
        background    0.22s ease,
        border-color  0.22s ease,
        color         0.22s ease;
}
.btn-port-ghost:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}
.hero-port-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
}
.hero-port-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 22px;
    text-align: center;
}
.hero-port-stat:first-child { padding-left: 0; }
.hero-port-stat:last-child  { padding-right: 0; }
.hero-port-stat strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 3px;
    letter-spacing: -0.5px;
}
.hero-port-stat span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}
.hero-port-stat-div {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.25);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce-hint 2.4s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounce-hint {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}
/* =============================================
   FRANJA CONTADOR OPERATIVO
   ============================================= */
.founding-strip {
    background: linear-gradient(90deg, #060c1c 0%, #0d1b3e 50%, #060c1c 100%);
    border-top: 1px solid rgba(42,110,242,0.2);
    border-bottom: 3px solid var(--arcadian-gold, #f59e0b);
    padding: 28px 10%;
    position: relative;
    overflow: hidden;
}
/* Brillo ambiental sutil */
.founding-strip::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.founding-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}
/* ── Texto izquierda ── */
.founding-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.founding-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
    animation: dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.founding-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 3px;
}
.founding-since {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.5px;
}
/* ── Contador central ── */
.founding-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.founding-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 56px;
}
.founding-unit strong {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}
.founding-unit span {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
/* Unidades más pequeñas (horas, min, seg) */
.founding-unit--small strong {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
}
.founding-unit--small span {
    color: rgba(255,255,255,0.2);
}
/* Separador : */
.founding-sep {
    font-size: 2rem;
    font-weight: 800;
    color: var(--arcadian-gold, #f59e0b);
    line-height: 1;
    padding-bottom: 14px; /* alinea visualmente con los números */
    opacity: 0.7;
    animation: sep-blink 1s ease-in-out infinite;
}
.founding-sep--small {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.2);
    animation: none;
    opacity: 0.4;
}
@keyframes sep-blink {
    0%,100% { opacity: 0.7; }
    50%      { opacity: 0.25; }
}
/* ── Ícono derecha ── */
.founding-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.28);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.5;
    text-align: right;
}
.founding-right i {
    font-size: 1.6rem;
    color: var(--arcadian-blue, #2a6ef2);
    opacity: 0.7;
    flex-shrink: 0;
}
/* Responsive */
@media (max-width: 1024px) {
    .founding-right { display: none; }
}
@media (max-width: 768px) {
    .founding-strip   { padding: 22px 5%; }
    .founding-inner   { gap: 20px; justify-content: center; }
    .founding-left    { width: 100%; justify-content: center; text-align: center; flex-direction: column; align-items: center; }
    .founding-counter { gap: 4px; }
    .founding-unit    { min-width: 44px; }
    .founding-unit strong { font-size: 1.7rem; }
    .founding-unit--small strong { font-size: 1.2rem; }
    .founding-sep     { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .founding-unit--small,
    .founding-sep--small { display: none; }
    .founding-unit strong { font-size: 1.9rem; }
}

/* =============================================
   CLIENTES — SECCIÓN WRAPPER
   ============================================= */
.clients-port-section {
    background: #fff;
    padding: 80px 0 70px;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}
/* =============================================
   GOBIERNO SPOTLIGHT
   ============================================= */
.gov-spotlight {
    margin: 0 10% 52px;
    border-radius: 24px;
    background: linear-gradient(135deg, #060c1c 0%, #0a1732 55%, #0e2048 100%);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        0 32px 72px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
}
.gov-spotlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #2a6ef2 15%,
        #2a6ef2 35%,
        #f59e0b 50%,
        #2a6ef2 65%,
        #2a6ef2 85%,
        transparent 100%
    );
}
.gov-spotlight::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(42,110,242,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.gov-spotlight-inner {
    padding: 48px 56px;
    position: relative;
    z-index: 2;
}
.gov-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.gov-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.gov-header-left > i {
    font-size: 2rem;
    color: var(--arcadian-gold, #f59e0b);
    flex-shrink: 0;
}
.gov-header-left > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gov-header-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}
.gov-header-left small {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.32);
    letter-spacing: 0.3px;
}
.gov-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.22);
    color: #10b981;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.gov-active-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.gov-logos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.gov-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 38px 24px 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    text-align: center;
    position: relative;
    cursor: default;
    transition:
        background     0.32s ease,
        border-color   0.32s ease,
        transform      0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow     0.32s ease;
}
.gov-card:hover {
    background: rgba(42,110,242,0.08);
    border-color: rgba(42,110,242,0.38);
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}
.gov-card--featured {
    border-color: rgba(245,158,11,0.25);
    background: rgba(245,158,11,0.04);
}
.gov-card--featured::before {
    content: 'Mayor Escala';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #b45309, #f59e0b);
    color: #000;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.67rem;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.gov-card--featured:hover {
    border-color: rgba(245,158,11,0.55);
    background: rgba(245,158,11,0.08);
}
.gov-card-logo {
    width: 200px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}
.gov-card--featured .gov-card-logo {
    background: #ffffff;
    border-color: rgba(245,158,11,0.25);
    box-shadow: 0 4px 20px rgba(245,158,11,0.15), 0 4px 16px rgba(0,0,0,0.18);
    width: 210px;
    height: 140px;
    padding: 8px 10px;
}
.gov-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    transition: transform 0.32s cubic-bezier(0.33,1,0.68,1);
}
.gov-card:hover .gov-card-logo {
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.gov-card:hover .gov-card-logo img {
    transform: scale(1.06);
}
.gov-card strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1;
}
.gov-card small {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.33);
    line-height: 1.5;
    max-width: 200px;
}
.gov-footer-note {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.55;
    flex-wrap: wrap;
}
.gov-footer-note i {
    color: var(--arcadian-blue, #2a6ef2);
    font-size: 0.95rem;
    flex-shrink: 0;
}
/* =============================================
   DIVISOR PRIVADO / CORPORATIVO
   ============================================= */
.clients-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 10%;
    margin-bottom: 28px;
}
.clients-divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}
.clients-divider > span {
    font-size: 0.76rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.clients-divider > span i {
    color: var(--arcadian-blue, #2a6ef2);
}
/* =============================================
   PRIVADOS — STATS ROW
   ============================================= */
.priv-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10% 36px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 1px solid #dde8f8;
    border-left: 4px solid var(--arcadian-blue, #2a6ef2);
    border-radius: 16px;
    padding: 26px 40px;
    gap: 0;
    box-shadow: 0 4px 16px rgba(42,110,242,0.05);
}
.priv-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 36px;
    flex: 1;
    justify-content: center;
}
.priv-stat-item > i {
    font-size: 1.7rem;
    color: var(--arcadian-blue, #2a6ef2);
    flex-shrink: 0;
    opacity: 0.85;
}
.priv-stat-item strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.priv-stat-item span {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}
.priv-stat-divider {
    width: 1px;
    height: 48px;
    background: #cbd5e1;
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .priv-stats-row {
        flex-direction: column;
        margin: 0 5% 28px;
        padding: 24px 28px;
        gap: 20px;
    }
    .priv-stat-item { padding: 0; width: 100%; }
    .priv-stat-divider { width: 100%; height: 1px; }
}
@media (max-width: 480px) {
    .priv-stats-row { margin: 0 4% 24px; padding: 20px 20px; border-radius: 12px; }
}

/* =============================================
   MARQUEE
   ============================================= */
.clients-port-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    padding: 20px 0;
}
.clients-port-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: port-scroll 48s linear infinite;
}
.clients-port-marquee:hover .clients-port-track {
    animation-play-state: paused;
}
@keyframes port-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-port-logo {
    height: 100px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    flex-shrink: 0;
    transition:
        filter    0.35s ease,
        transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.client-port-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.12);
}
/* =============================================
   SECTORES ATENDIDOS
   ============================================= */
.sectors-section {
    background: #f8fafc;
    padding: 90px 10%;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sector-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    border-top: 3px solid var(--sec-color, #2a6ef2);
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition:
        transform   0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.32s ease;
    will-change: transform;
}
.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.08);
}
.sector-num {
    position: absolute;
    top: -10px; right: 16px;
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--sec-color, #2a6ef2);
    opacity: 0.05;
    line-height: 1;
    user-select: none;
    transition: opacity 0.3s ease;
}
.sector-card:hover .sector-num { opacity: 0.1; }
.sector-icon {
    width: 54px; height: 54px;
    background: rgba(42,110,242,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem;
    color: var(--sec-color, #2a6ef2);
    margin-bottom: 18px;
    transition:
        background 0.22s ease,
        color      0.22s ease,
        transform  0.22s cubic-bezier(0.175,0.885,0.32,1.275);
}
.sector-card:hover .sector-icon {
    background: var(--sec-color, #2a6ef2);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
}
.sector-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-title, #0f172a);
    margin-bottom: 10px;
    line-height: 1.3;
}
.sector-card p {
    color: var(--text-p, #64748b);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.sector-tags span {
    background: rgba(42,110,242,0.07);
    color: var(--sec-color, #2a6ef2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
}
/* =============================================
   NOC
   ============================================= */
.noc-section {
    background: #070b19;
    color: #fff;
    border-bottom: 4px solid var(--arcadian-blue, #2a6ef2);
    position: relative;
    overflow: hidden;
}
.noc-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42,110,242,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.noc-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.noc-content { flex: 1.5; }
.noc-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}
.noc-content > p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
.noc-features { display: flex; flex-direction: column; gap: 20px; }
.noc-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(42,110,242,0.18);
    transition:
        background     0.3s ease,
        transform      0.3s cubic-bezier(0.33,1,0.68,1),
        border-color   0.3s ease;
}
.noc-item:hover {
    background: rgba(42,110,242,0.08);
    transform: translateX(8px);
    border-color: var(--arcadian-blue, #2a6ef2);
}
.noc-item > i {
    font-size: 1.8rem;
    color: var(--arcadian-blue, #2a6ef2);
    flex-shrink: 0;
    margin-top: 3px;
}
.noc-item h4 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 7px;
}
.noc-item p {
    color: #64748b;
    font-size: 0.93rem;
    margin: 0;
    line-height: 1.6;
}
.noc-item p em {
    color: var(--arcadian-gold, #f59e0b);
    font-style: normal;
    font-weight: 700;
}
.noc-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.noc-network-ring {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ring {
    position: absolute;
    border: 1px dashed rgba(42,110,242,0.3);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: pulse-ring 4s infinite linear;
}
.r1 { width: 150px; height: 150px; animation-delay: 0s; }
.r2 { width: 250px; height: 250px; animation-delay: 1.5s; border-style: solid; border-color: rgba(42,110,242,0.1); }
.r3 { width: 350px; height: 350px; animation-delay: 3s; }
@keyframes pulse-ring {
    0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; }
}
.network-center {
    width: 90px; height: 90px;
    background: rgba(11,19,43,0.9);
    border: 3px solid var(--arcadian-blue, #2a6ef2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: var(--arcadian-blue, #2a6ef2);
    z-index: 5;
    box-shadow: 0 0 30px rgba(42,110,242,0.4);
}
.sat-node {
    position: absolute;
    width: 45px; height: 45px;
    background: #0f172a;
    border: 2px solid #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #25D366;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 0 20px rgba(37,211,102,0.25);
}
.sat-node.error-node {
    border-color: #ef4444;
    color: #ef4444;
    box-shadow: 0 0 20px rgba(239,68,68,0.5);
    animation: error-blink 1s infinite;
}
.s1 { top: 10%; left: 10%; }
.s2 { bottom: 15%; right: 10%; }
.s3 { top: 45%; right: -5%; }
@keyframes error-blink {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.8; transform: scale(1.15); }
}
/* =============================================
   CASOS DE ESTUDIO V2
   ============================================= */
.case-studies-section { background: #f8fafc; }
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1300px;
    margin: 0 auto;
}
.case-card-v2 {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition:
        transform   0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.32s ease,
        border-color 0.32s ease;
    position: relative;
}
.case-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.1);
    border-color: var(--case-color, #2a6ef2);
}
.case-v2-accent {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--case-color, #2a6ef2);
}
.featured-v2 {
    border-color: var(--arcadian-gold, #f59e0b);
    box-shadow: 0 12px 32px rgba(245,158,11,0.1);
}
.featured-v2 .case-v2-accent {
    background: var(--arcadian-gold, #f59e0b);
    width: 5px;
}
.case-v2-header {
    padding: 28px 28px 0 36px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.case-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(42,110,242,0.08);
    color: var(--case-color, #2a6ef2);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.featured-badge {
    background: rgba(245,158,11,0.12);
    color: var(--arcadian-gold, #f59e0b);
}
.case-v2-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--case-color, #2a6ef2);
    opacity: 0.1;
    line-height: 1;
    flex-shrink: 0;
}
.featured-v2 .case-v2-num { color: var(--arcadian-gold, #f59e0b); }
.case-card-v2 h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-title, #0f172a);
    margin: 16px 28px 20px 36px;
    line-height: 1.35;
}
.case-v2-blocks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 28px 20px 36px;
    flex: 1;
}
.case-v2-block {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px 18px;
}
.case-v2-block.highlight {
    background: #eff6ff;
    border-left: 3px solid var(--case-color, #2a6ef2);
}
.featured-v2 .case-v2-block.highlight {
    background: #fffbeb;
    border-left-color: var(--arcadian-gold, #f59e0b);
}
.case-v2-block-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-title, #0f172a);
    margin-bottom: 8px;
}
.case-v2-block-label i { color: var(--case-color, #2a6ef2); }
.case-v2-block p {
    color: var(--text-p, #64748b);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.case-v2-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}
.case-v2-metric {
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}
.case-v2-metric:last-child { border-right: none; }
.case-v2-metric strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--case-color, #2a6ef2);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.featured-v2 .case-v2-metric strong { color: var(--arcadian-gold, #f59e0b); }
.case-v2-metric span {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
/* =============================================
   ESTÁNDARES — TIMELINE HORIZONTAL
   ============================================= */
.standards-section {
    background: #fff;
    padding: 90px 10%;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.standards-timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.std-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.std-step-icon {
    width: 72px; height: 72px;
    background: #fff;
    border: 2.5px solid rgba(42,110,242,0.22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--arcadian-blue, #2a6ef2);
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(42,110,242,0.1);
    transition:
        background    0.28s ease,
        border-color  0.28s ease,
        color         0.28s ease,
        transform     0.28s cubic-bezier(0.175,0.885,0.32,1.275),
        box-shadow    0.28s ease;
    position: relative;
    z-index: 2;
}
.std-step:hover .std-step-icon {
    background: var(--arcadian-blue, #2a6ef2);
    border-color: var(--arcadian-blue, #2a6ef2);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 26px rgba(42,110,242,0.28);
}
.std-step-connector {
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    border-top: 2px dashed rgba(42,110,242,0.2);
    z-index: 1;
}
.std-step-connector.last { display: none; }
.std-step h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-title, #0f172a);
    margin-bottom: 10px;
}
.std-step p {
    color: var(--text-p, #64748b);
    font-size: 0.88rem;
    line-height: 1.6;
}
/* =============================================
   LOGÍSTICA
   ============================================= */
.logistics-section {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.logistics-container {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}
.logistics-text { flex: 1.4; }
.logistics-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 10px;
}
.logistics-feat {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #fff;
    padding: 26px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--arcadian-blue, #2a6ef2);
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
    transition:
        transform      0.3s cubic-bezier(0.33,1,0.68,1),
        border-color   0.3s ease,
        box-shadow     0.3s ease;
}
.logistics-feat:hover {
    transform: translateX(8px);
    border-left-color: var(--arcadian-gold, #f59e0b);
    box-shadow: 0 12px 28px rgba(42,110,242,0.08);
}
.logistics-feat-icon {
    width: 60px; height: 60px;
    background: rgba(42,110,242,0.08);
    color: var(--arcadian-blue, #2a6ef2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid rgba(42,110,242,0.12);
}
.logistics-feat h4 {
    color: var(--text-title, #0f172a);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.logistics-feat p {
    color: var(--text-p, #64748b);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}
.logistics-feat p strong { color: var(--arcadian-blue, #2a6ef2); font-weight: 700; }
.logistics-visual {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.log-stat-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition:
        transform   0.28s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.28s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.log-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(42,110,242,0.1);
}
.log-stat-card.accent {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(30,58,138,0.2);
}
.log-stat-card i {
    font-size: 1.6rem;
    color: var(--arcadian-blue, #2a6ef2);
    margin-bottom: 4px;
}
.log-stat-card.accent i { color: var(--arcadian-gold, #f59e0b); }
.log-stat-card strong {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-title, #0f172a);
    line-height: 1;
    letter-spacing: -1px;
}
.log-stat-card.accent strong { color: #fff; }
.log-stat-card span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}
.log-stat-card.accent span { color: rgba(255,255,255,0.5); }
/* =============================================
   GALERÍA
   ============================================= */
.gallery-section { background: #fff; }
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.filter-btn {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        background    0.22s ease,
        border-color  0.22s ease,
        color         0.22s ease,
        box-shadow    0.22s ease,
        transform     0.22s cubic-bezier(0.33,1,0.68,1);
}
.filter-btn i { color: #94a3b8; transition: color 0.22s ease; }
.filter-btn:hover {
    border-color: var(--btn-color);
    color: var(--btn-color);
    transform: translateY(-2px);
}
.filter-btn:hover i { color: var(--btn-color); }
.filter-btn.active {
    background: var(--btn-color);
    color: #fff;
    border-color: var(--btn-color);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.filter-btn.active i { color: #fff; }

/* Ripple al hacer click en filtro */
.filter-btn { position: relative; overflow: hidden; }
.filter-ripple {
    position: absolute;
    border-radius: 50%;
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.5);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-expand 0.55s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple-expand {
    to { transform: translate(-50%, -50%) scale(28); opacity: 0; }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
    cursor: zoom-in;
    transition:
        transform   0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.32s ease,
        opacity     0.30s ease;
    will-change: transform, opacity;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.33,1,0.68,1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,15,30,0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}
.gallery-overlay i {
    color: var(--arcadian-gold, #f59e0b);
    font-size: 2.4rem;
    transform: scale(0.6);
    transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.gallery-item:hover img           { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,15,30,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}
.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.lightbox-overlay.active .lightbox-img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 28px; right: 36px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition:
        background  0.22s ease,
        transform   0.22s cubic-bezier(0.175,0.885,0.32,1.275);
}
.lightbox-close:hover {
    background: #ef4444;
    transform: scale(1.1) rotate(90deg);
}
/* =============================================
   CTA FINAL
   ============================================= */
.cta-portafolio {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 100px 10%;
    text-align: center;
    border-top: 4px solid var(--arcadian-gold, #f59e0b);
    position: relative;
    overflow: hidden;
}
.cta-portafolio::before {
    content: '';
    position: absolute;
    top: -100px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.cta-portafolio::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(42,110,242,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.cta-port-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-port-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.22);
    color: var(--arcadian-gold, #f59e0b);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.cta-port-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
    text-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.cta-port-content p {
    font-size: 1.08rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-port-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--arcadian-gold, #f59e0b);
    color: #000;
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(245,158,11,0.35);
    transition:
        transform   0.22s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.22s ease,
        background  0.22s ease;
}
.btn-cta-gold:hover {
    background: #fbbf24;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 32px rgba(245,158,11,0.5);
}
.btn-cta-ghost-port {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75);
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.16);
    transition:
        transform     0.22s cubic-bezier(0.33,1,0.68,1),
        background    0.22s ease,
        border-color  0.22s ease,
        color         0.22s ease;
}
.btn-cta-ghost-port:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.32);
    color: #fff;
    transform: translateY(-4px);
}
/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .sectors-grid  { grid-template-columns: repeat(2, 1fr); }
    .cases-grid    { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .gov-spotlight { margin: 0 6% 44px; }
    .gov-spotlight-inner { padding: 40px 38px; }
}
@media (max-width: 1024px) {
    .noc-container       { flex-direction: column; text-align: center; }
    .noc-features        { text-align: left; }
    .logistics-container { flex-direction: column; }
    .logistics-text .sec-desc { text-align: left; }
}
@media (max-width: 900px) {
    .hero-portafolio      { padding: 120px 6% 70px; min-height: auto; }
    .hero-port-content h1 { font-size: 2.8rem; }
    .hero-port-stats      { display: none; }
    .standards-timeline   { flex-direction: column; align-items: center; gap: 32px; }
    .std-step-connector   { display: none; }
    .std-step             { max-width: 320px; }
    .logistics-visual     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .gov-spotlight        { margin: 0 5% 36px; border-radius: 18px; }
    .gov-spotlight-inner  { padding: 32px 24px; }
    .gov-logos-grid       { grid-template-columns: 1fr; gap: 36px; }
    .gov-card--featured   { margin-top: 16px; }
    .gov-card-logo,
    .gov-card--featured .gov-card-logo {
        width: 180px;
        height: 115px;
    }
    .gov-header           { gap: 14px; }
    .clients-divider      { padding: 0 5%; }
}
@media (max-width: 768px) {
    .section-padding       { padding: 60px 5%; }
    .sectors-grid          { grid-template-columns: 1fr; }
    .hero-port-content h1  { font-size: 2.3rem; }
    .section-title         { font-size: 2rem; }
    .noc-content h2        { font-size: 2rem; }
    .cta-port-content h2   { font-size: 2rem; }
    .hero-port-buttons     { flex-direction: column; }
    .cta-port-buttons      { flex-direction: column; align-items: center; }
    .logistics-visual      { grid-template-columns: 1fr 1fr; max-width: 400px; margin: 0 auto; }
    .gallery-grid          { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .lightbox-close        { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .hero-port-content h1  { font-size: 1.9rem; }
    .case-v2-metrics       { grid-template-columns: 1fr; }
    .case-v2-metric        { border-right: none; border-bottom: 1px solid #e2e8f0; }
    .case-v2-metric:last-child { border-bottom: none; }
    .gov-spotlight-inner   { padding: 24px 18px; }
    .gov-header-title      { font-size: 0.88rem; letter-spacing: 1px; }
    .gov-card              { padding: 30px 18px 24px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}